/*
	screenHint.js

	Depends on the Javascript Client Sniffer
*/

if( is_js >= 1.2 )
{
	//	set this cookie only if no screenheight cookie is already present
	if( document.cookie.indexOf( 'screenheight' ) == -1 )
	{
		document.cookie = 'screenheight=' + screen.height;
	}

	if( document.cookie.indexOf( 'screenwidth' ) == -1 )
	{
		document.cookie = 'screenwidth=' + screen.width;
	}
}

