<!--
 function popup(url, win, w, h, scroll)
 {
	if(!scroll)
		scroll = 'yes';
 	var winl = (screen.width - w) / 2;
	/* var wint = (screen.height - h) / 2; */
	prop = 'height='+h+',width='+w+',top=5,left='+winl+',scrollbars='+scroll+',resizable=yes,toolbar=no,location=no,status'
 	Window = window.open(url,win,prop);
	Window.focus()	// making sure that the window will be focused in case someone minimalized it and then clicked on a link that popped it open again
 }
//-->