
var scr_w = screen.availWidth;
var scr_h = screen.availHeight;

//daca rezolutia ii mai mare de 800px...
if (scr_h > 800) {

	//calculez marimea ferestrei
	var browseWidth = 0, browseHeight = 0;
	  if( typeof( window.innerWidth ) == 'number' ) {
	    //Non-IE
	    browseWidth = window.innerWidth;
	    browseHeight = window.innerHeight;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	    //IE 6+ in 'standards compliant mode'
	    browseWidth = document.documentElement.clientWidth;
	    browseHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	    //IE 4 compatible
	    browseWidth = document.body.clientWidth;
	    browseHeight = document.body.clientHeight;
	  }

	  //window.alert( 'Width = ' + browseWidth );
	  //window.alert( 'Height = ' + browseHeight );
    			
			
			//daca fereastra ii Width > 1109px
			if (browseWidth > 1109) {
				//document.write("big_width!!!!!");
				//ii incarc alt css..
				document.write("");
				}
				
			//daca fereastra ii browseHeight < 504px
			if (browseHeight < 504) {
				//document.write("small_height!!!!");
				//ii incarc alt css..
				document.write("<link href='../RES_scripts/window_screen_check/small_height.css' rel='stylesheet' type='text/css'>");
				}
	       
}
		   
