var newwindow;
function popUp(URL)
{
	newwindow=window.open(URL,'name','height=400,width=400');
	if (window.focus) {newwindow.focus()}
}
