// Popup window scripts
// Open new window
function popUp(URL, id){
    if(id === undefined){
      	day = new Date();
	    id = day.getTime();  
    }
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=820,height=600');");
}

// Close window and refresh parent
function popDown(){
	window.opener.location.reload();
	window.self.close();
}
