//include this .js file to detect screen resolution across browsers

var wdth = 0;
var hght = 0;

if(window.innerWidth)
	wdth = window.innerWidth; 
else if((document.body) && (document.body.clientWidth))
	wdth = document.body.clientWidth;
else 
	wdth = screen.width
	
if(window.innerHeight)
	hght = window.innerHeight;
else if((document.body) && (document.body.clientHeight))
	hght = document.body.clientHeight;
else
	hght = screen.height
	
//alert("Your settings are:\n\nWidth: " + wdth + "\nHeight: " + hght);
