var pop
function popUp(URL,w,h){
	if(pop!=null && !pop.closed) {
		pop.close()
	}
	pop = window.open(URL,"popup","width="+w+",height="+h+",resizable=0,scrollbars=0,location=0,status=0 ")
	pop.focus()
}
