function getScreenResolution(){
	var width = screen.width;
	var height = screen.height;
	
	var url="screen-resolution.php";
	url=url+"?width="+width+"&height="+height;
	//alert( url );
	window.location.href = url;	
	//window.location.href = "index.php";
}
