function openWin(url, name, options) {
	var win;
	
	win = window.open(url, name, options);
}

function openerChange (sUrl)
{
	window.opener.location.href=sUrl;
	window.close();
}	

function OpenNew(sPage, w, h)
{
    var windowoptions = 'width='+ w +', height='+ h +',scrollbars=yes,toolbars=no;';
	var oNewWindow = window.open(sPage , 'FPWindow',windowoptions);
	oNewWindow.resizeTo(w, h);
}	

function popWin(tREF,tURL,tWID,tHEI,tSCR,tRES) {
	var url = tURL;
	var opString = "width="+tWID+",height="+tHEI+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+tSCR+",resizable="+tRES+",copyhistory=no";
    theWin = window.open(url, tREF, opString);
	if (theWin) {
		theWin.focus();
	}

}