var pop 

function popUp(URL){
if(pop!=null && !pop.closed){ 
pop.close() 
}
pop = window.open (URL,'mywindow','location=1,status=1,scrollbars=1,width=570,height=510'); 
pop.focus()
}

