/*
This script changes "body.style.zoom" according to the screen resolution.
You can freely distribute this script.
Please don't remove any comment.
Contact Mr.Abhijit Mitra, 9436470778, India
*/

window.onload = check_width

function check_width() {
   var correctwidth=1024;
   // You can personalize "correctwidth" according to your layout.
			
   if (screen.width!=correctwidth) {									
   document.body.style.zoom = screen.width / correctwidth;				
   }
}