var frm; 
function bps(showID, isPreshow, isBranded, source, sessionID) {
	var showURL = "http://www.bpShows.com/PlayWebShow.aspx?showID=" + showID;
	if (isPreshow) {
		showURL += "&preshow=true";
	}else {
		showURL += "&preshow=false";
	}
	if (isBranded) {
		showURL += "&branded=true";
	}else {
		showURL += "&branded=false";
	}
	if (source) {
	    showURL += "&src=" + source;
	}
	if (sessionID) {
	    showURL += "&sID=" + sessionID;
	}
	if (frm == null) {
		var winOpts = "location=no,menubar=no,resizable=no,scrollbars=no,status=yes,titlebar=yes,toolbar=no";
		window.open(showURL, "BPTShow", winOpts, true);
	} else {
		showURL += "&w=" + frm.clientWidth;
		showURL += "&h=" + frm.clientHeight;
		frm.src = showURL;
	}
}
function bpsf(fName, showID, isPreshow, isBranded, source, sessionID) {
	frm = document.getElementById(fName);
	bps(showID, isPreshow, isBranded, source, sessionID);
}
function bpt(tourID) {
	var tourURL = "http://www.bpShows.com/PlayWebTour.aspx?tourID=" + tourID;
	var winOpts = "location=no,menubar=no,resizable=no,scrollbars=no,status=yes,titlebar=yes,toolbar=no";
	window.open(tourURL, "BPTShow", winOpts, true);
}
function RelayKey() {
	if (frm != null) {
		frm.contentWindow.ProcessKey(window.event);
	}
}
