<!--
function popUpContent(url) {
 popUpWin = window.open(url,'','height=400,width=500, location=no, scrollbars=yes, menubars=no,toolbars=no,resizable=yes');
 if (!popUpWin.opener) 
	popUpWin.opener = self;
}

function printContent(url) {
 popUpWin = window.open(url,'','height=550,width=650, location=no, scrollbars=yes, menubars=no,toolbars=no,resizable=yes');
 if (!popUpWin.opener) 
	popUpWin.opener = self;
}

function popUpWindow(url) {
 popUpWin = window.open(url,'','height=250,width=350, location=no, scrollbars=yes,menubars=no,toolbars=no,resizable=yes');
 if (!popUpWin.opener) 
	popUpWin.opener = self;
}

function popUpImage(theURL,winName,width, height){
 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();
  }
}

function smallWindow(url) {
 var w = screen.width/2;
 var h = screen.height/2;
 popUpWin = window.open(url,'','top='+screen.height/6+', left=0, height='+h+',width='+w+', status=1, location=1, scrollbars=1, menubar=1,toolbar=1,resizable=1');
 if (!popUpWin.opener) 
	popUpWin.opener = self;
}
//-->