
function popUpContent(url) {
 popUpWin = window.open(url,'','height=300,width=400, 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 popUp(pPage, pWidth, pHeight) {
	popUpWin = window.open('','','resizable=yes,scrollbars=no,width='+pWidth+',height='+pHeight+',top=150,left=300');
	 if (!popUpWin.opener) popUpWin.opener = self;
	 with (popUpWin.document)
	 {
 		write('<HTML><HEAD><TITLE></TITLE>');
	 	write('</head>');
 		write('<BODY topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" bgcolor="#FFFFFF">');
	 	write('<table width=\"100%\" height=\"100%\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td align=\"center\" valign=\"middle\"><IMG SRC="' + pPage + '" align="center"></td></tr></table>');
 		write('</BODY></HTML>');
		close();
 	}
}
function OpenWYSIWYG(form_name, field_name){
	popUpWin = window.open('wysiwyg.php?frm_name='+form_name+'&fld_name='+field_name+'','','resizable=yes, scrollbars=no,width=650,height=450, top=70,left=80, status=no');
	popUpWin.opener = self;	popUpWin.focus();
}
