// Miscellaneous Pop Open Window Scripts used throughout the site
function HelpWindowPopUp(specified_url)
{
	if(typeof HelpWindow != "undefined" ){
		if(!HelpWindow.closed)HelpWindow.close();
	}
	HelpWindow=window.open(specified_url, "HelpWindow","width=550,height=550,menubar=0,toolbar=0,statusbar=0,scrollbars=1,navbar=0,resizable=1,dependent=1");
	if(HelpWindow.opener == null){ //to make backward compatible to Navigator 2!!
		HelpWindow.opener = self;
	}
	HelpWindow.focus();
}

function InteracLearnMorePopUp(specified_url)
{
	if(typeof InteracLearnMore != "undefined" ){
		if(!InteracLearnMore.closed)InteracLearnMore.close();
	}
	InteracLearnMore=window.open(specified_url, "InteracLearnMore","width=770,height=540,menubar=0,toolbar=0,statusbar=0,scrollbars=1,navbar=0,resizable=1,dependent=1");
	if(InteracLearnMore.opener == null){ //to make backward compatible to Navigator 2!!
		InteracLearnMore.opener = self;
	}
	InteracLearnMore.focus();
}


