<!--
function popUp(url,windowname,width,height){
	var standard = "top=20,left=200,scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no";
	var size = ",width="+width+",height="+height;
	newwin = window.open(url,windowname,standard+""+size);
	newwin.focus(self);
}
-->