// This function is used to popup a second window.  It is used by feedback, subscriptions, and surveys
// Written by Deborah Harms
function OpenSurveyWindow(options) {
	//alert(options);
	if(isLoaded){
		msgWindow=window.open("","iKnowSubWindow",options);
		return(1);
	}
}

// This function is used to open a new window, load a frameset, then populate the content frame with a link.  It is used to display externally licensed content.
// Written by Ken Romero, tweaked by James Moriarity
function openNewFrame(strURL,strQueryString){
		strQueryString = strQueryString.replace(/http:/,"")
		if((document.all) && (navigator.platform.indexOf("Win")!=-1)){
			strQueryString = escape(strQueryString);
		}
		var strFullURL = strURL + strQueryString;
		var win = window.open(strFullURL, "win","height=510,width=526,scrollbars=yes,resizable=yes");
		win.focus()
}

