		function client_data(info)
		{
			if (info == 'width')
			{
				//width_height_html = '<h4  class="right-bar">Current Screen Resolution</h4>';
				width = (screen.width) ? screen.width:'';
				height = (screen.height) ? screen.height:'';
				// check for windows off standard dpi screen res
				if (typeof(screen.deviceXDPI) == 'number') {
					width *= screen.deviceXDPI/screen.logicalXDPI;
					height *= screen.deviceYDPI/screen.logicalYDPI;
				} 
				/*width_height_html += '<p class="right-bar">' + width + " x " +
					height + " pixels</p>";*/
				width_height_html = width + " x " + height + " pixels";
				return (width && height) ? width_height_html : '';
			}
			else if (info == 'js' )
			{
				document.write('<p class="right-bar">JavaScript is enabled.</p>');
			}
			else if ( info == 'cookies' )
			{
				expires ='';
				Set_Cookie( 'cookie_test', 'it_worked' , expires, '', '', '' );
				string = '<h4  class="right-bar">Cookies</h4><p class="right-bar">';
				if ( Get_Cookie( 'cookie_test' ) )
				{
					string += 'Cookies are enabled</p>';
				}
				else {
					string += 'Cookies are disabled</p>';
				}
				document.write( string );
			}
		}

