function showOverlay(){
	var body = window.document.getElementsByTagName('body')[0];
	var overlay = window.document.getElementById('overlay');
	overlay.style.height = "100%";//body.offsetHeight+"px";
	overlay.style.width = "100%";//body.offsetWidth+"px";
	overlay.style.visibility = "visible";
}