/*
Displays popup windows.

02-29-2000 THulsey	Created.
03-08-2000 THulsey	Function remote() simplified; remoteHelp() added.
10-30-2000 THulsey	CCBN windows added.
08-04-2005 MRoyal  Employment pop-up
*/

var QuikFindPop;
var CCBNPop;


//Show the Quick Find popup window.
function remote(BIDqs,Hqs){
	var SendPath = "/include/Remote.asp?BID=" + BIDqs + "&h=" + Hqs;

	//Either create new popup...
	if (!QuikFindPop || QuikFindPop.closed) {
		QuikFindPop=window.open(SendPath,"modal","width=370,height=175,top=347,left=319");
		QuikFindPop.creator=self;
		if (QuikFindPop.opener == null) {
			QuikFindPop.opener = self;
		}
	//...or bring the existing one forward.
	} else {
		QuikFindPop.document.forms[0].CatNo.focus();
	}
}

//Show the Help popup window.
function remoteHelp(HelpText){
	var SendPath = "/include/RemoteHelp.asp?HlpTxt=" + HelpText;

	//Create new popup in every case so that changed HelpText displays
	if (!QuikFindPop || QuikFindPop.closed) {
		QuikFindPop=window.open(SendPath,"modal","width=319,height=131,top=347,left=319");
		QuikFindPop.creator=self;
		if (QuikFindPop.opener == null) {
			QuikFindPop.opener = self;
		}
	}
}

//Show the CCBN investment info popup window.
function remoteCCBN(BIDqs,Hqs,sentW,sentH,sentT,sentL,sentURL){
	var SendPath = "";
	var SendSize = "";

	//Use size arguments if they were sent
	if (remoteCCBN.arguments.length>=6) {
		SendSize = "width="+sentW+",height="+sentH+",top="+sentT+",left="+sentL+",status=0,borders=0,toolbar";
	} else {
		SendSize = "width=640,height=480,top=0,left=0,status=0,borders=0,toolbar";
	}

	//Use URL argument if sent
	if (remoteCCBN.arguments.length==7) {
		SendPath = sentURL;
	} else {
		SendPath = "investorCCBN/IRframes.htm?BID=" + BIDqs + "&h=" + Hqs;
	}

	//Either create new popup...
	if (!CCBNPop || CCBNPop.closed) {
		CCBNPop=window.open(SendPath,"modalCCBN",SendSize);
		CCBNPop.creator=self;
		if (CCBNPop.opener == null) {
			CCBNPop.opener = self;
		}
	//...or bring the existing one forward.
	} else {
		// if (remoteCCBN.arguments.length!=7) 
		CCBNPop.IRnavbar.document.forms[0].IRlinks.focus();
	}
	
}


//Employment pop-up
function careerWindow() {
	careerOP = window.open('http://www.careers-talbots.com/talbots/jobboard/SearchJobs.aspx?__VT=ExtCan', 'careerWin', 'width=660,height=525,scrollbars=yes resizable=yes')
	careerOP.focus();
}

