// JavaScript Document
function controlResol() {
var altezza = window.screen.height;
	var larghezza = window.screen.width;
	
	if ((altezza <= 600) && (larghezza <=800)) {
		var div800 = document.getElementById("container");
		div800.style.top = 0;
		div800.style.left = 0;
  		div800.style.marginLeft = 0;
		div800.style.marginRight = 0;
		div800.style.marginTop = 0;
		
		
}
}


