// JavaScript Document
function doForm() {
	document.getElementById('formDiv').style.zIndex = "50";
	document.getElementById('formDiv').style.display = "block";
	document.getElementById('all').style.zIndex = "40";
	document.getElementById('all').style.background = "url(../images/bg_popup.png)";
	document.getElementById('all').style.display= "block";

}

function quitForm(frm) {
	document.getElementById('formDiv').style.zIndex = "-1";
	document.getElementById('all').style.zIndex = "-1";
	document.getElementById('formDiv').style.display = "none";
	document.getElementById('all').style.display = "none";
	document.getElementById('all').style.backgroundColor = "#ffffff";
	/*clearForm(frm);*/
}

function windows_open(url,name,windowWidth,windowHeight){		  
	myleft=(screen.width)?(screen.width-windowWidth)/2:100;
	mytop=(screen.height)?(screen.height-windowHeight)/2:100;
	properties = "width="+windowWidth+",height="+windowHeight+",scrollbars=yes, top="+mytop+",left="+myleft;
	window.open(url,name,properties)
	  
}