
	function showcontact() {
		
			contactdiv = document.getElementById("contact");
			//475/410/ 800/550  160 // 125
			// 
			//alert("Height: " + document.body.clientHeight);
			//alert("Width: " + document.body.clientWidth);
			contactdiv.style.left = parseInt((document.body.clientWidth - 800) / 2) + 158 + "px";
			contactdiv.style.top = parseInt((document.body.clientHeight-550) / 2) + 220 + "px";
			
			contactdiv.style.display = "";
			contactdiv.style.zindex = "4";
			
	}
	
	function hidecontact() {
		contactdiv = document.getElementById("contact");
		contactdiv.style.display = "none";
	}
	
	function resized() {
		contactdiv = document.getElementById("contact");
		contactdiv.style.left = parseInt((document.body.clientWidth - 800) / 2) + 158 + "px";
		contactdiv.style.top = parseInt((document.body.clientHeight-550) / 2) + 220 + "px";
		
	}