<!--
function popUpContent(url) {
 x = (parseInt(window.screen.width) -400)/ 2;
 y = (parseInt(window.screen.height) - 600) / 2;
 popUpWin = window.open(url,'','height=600,width=400, location=no, scrollbars=yes, menubars=no,toolbars=no,resizable=yes');
 if (!popUpWin.opener) popUpWin.opener = self;
 popUpWin.moveTo(x,y);
}

function popUpImage(theURL,winName,width, height){
 x = (parseInt(window.screen.width) -width)/ 2;
 y = (parseInt(window.screen.height) - height) / 2;
 popUpWin = window.open('','',"'resizable=no,scrollbars=no, width="+width+" ,height="+height+"'");
 if (!popUpWin.opener) popUpWin.opener = self;
 with (popUpWin.document) {
 	write('<HTML><HEAD><TITLE>View Full Image</TITLE>');
 	write('</head>');
 	write('<BODY bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
 	write('<IMG SRC="' + theURL + '" alt="Click on image to close window" onclick="window.close()">');
 	write('</BODY></HTML>');
	close();
  }
 popUpWin.moveTo(x,y);
}
//-->