function show_form(form_name){
	if (form_name.style.display == "none"){
		form_name.style.display = "";
	}
	else{
		form_name.style.display = "none";
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
}