

// function resize(oW, oH)
// {	
// 	window.resizeTo( oW + 200, oH + 200 );
//     var myW = 0, myH = 0, d = window.document.documentElement, b = window.document.body;
// 	if( window.innerWidth ) { myW = window.innerWidth; myH = window.innerHeight; }
// 	else if( d && d.clientWidth ) { myW = d.clientWidth; myH = d.clientHeight; }
// 	else if( b && b.clientWidth ) { myW = b.clientWidth; myH = b.clientHeight; }
// 	if( window.opera && !document.childNodes ) { myW += 16; }
// 	window.resizeTo( oW + ( ( oW + 200 ) - myW ), oH + ( (oH + 200 ) - myH ) ); 
// 	window.moveTo(0,0);
// }

if (screen.width>=1024)
		{ 
		document.write('<'+'link rel="stylesheet" type="text/css" href="Styles.css" />');
		  //resize(1100,800);
    }	
	else
		{ 
		document.write('<'+'link rel="stylesheet" type="text/css" href="Styles800x600.css" />');
	   //resize(800,600);
}

