function client_data(info)
{
if (info == 'width')
{
width_height_html = '<h2>Näytön resoluutio:</h2>';
width = (screen.width) ? screen.width:'';
height = (screen.height) ? screen.height:'';
width_height_html += '<p>' + width + " x " +
	height + " pikseliä</p>";
(width && height) ? document.write(width_height_html):'';
}
else if (info == 'js' )
{
document.write('<p>JavaScript on käytössä.</p>');
}
else if ( info == 'cookies' )
{
expires ='';
Set_Cookie( 'cookie_test', 'it_worked' , expires, '', '', '' );
string = '<h2>Evästeet (cookies):</h2><p>';
	if ( Get_Cookie( 'cookie_test' ) )
	{
	string += 'Evästeet ovat käytössä</p>';
}
else {
string += 'Evästeet eivät ole käytössä</p>';
}
document.write( string );
}
}