// JavaScript Document

//-----------------------------------------------
// POP UP WINDOW
//-----------------------------------------------

	function popUp(URL,width,height) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + "');");
	}
	
//-----------------------------------------------
// REPLACE EMAIL LIST REGISTRATION FIELDS
//-----------------------------------------------

	function replace_email_name(){
		document.getElementById("emailList_name").style.display = "none";
	}
	
	function replace_email_text(){
		document.getElementById("emailList_text").style.display = "none";
	}
