  var x=0, y=0;
  if( typeof( window.innerWidth ) == 'number' ) { //Non-IE
    x = window.innerWidth;
    y = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { //IE 6+ in 'standards compliant mode'
    x = document.documentElement.clientWidth;
    y = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { //IE 4
    x = document.body.clientWidth;
    y = document.body.clientHeight;
  }
if (x > 0 && y > 0) {
	document.writeln('<style type="text/css" title="currentStyle" media="screen">');
	document.writeln('@import url("style.php?res=1&x='+x+'&y='+y+'");');
	document.writeln('</style>');
	//alert('@import url("style.php?res=1&x='+x+'&y='+y+'");');
}



