<!--
function client_data(info)
{
	if (info == 'width')
	{
		width_height_html = '';
		width = (screen.width) ? screen.width:'';
		height = (screen.height) ? screen.height:'';
		width_height_html += '' + width + " x " +
			height + " pixels";
		(width && height) ? document.write(width_height_html):'';
	}
	else if (info == 'js' )
	{
		document.write('enabled');
	}
	else if ( info == 'cookies' )
	{
		expires ='';
		Set_Cookie( 'cookie_test', 'it_worked' , expires, '', '', '' );
		string = '';
		if ( Get_Cookie( 'cookie_test' ) )
		{
			string += 'enabled';
		}
		else {
			string += 'disabled';
		}
		document.write( string );
	}
}
//-->