function openBioflix(dUrl){
	mediaServerURL = 'http://media.pearsoncmg.com/bc/bc_0media_bio/demo/bioflix/' + dUrl;
	newWindow = window.open(mediaServerURL,'bfwin','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=668,height=570,resizable=1');
}

function openBioflixStory(dUrl){
	mediaServerURL = 'http://media.pearsoncmg.com/bc/bc_0media_bio/demo/bioflixstory/' + dUrl;
	newWindow = window.open(mediaServerURL,'bfwin','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=740,height=550,resizable=1');
}

function openBelkVideos(dUrl){
	mediaServerURL = './videos/' + dUrl + '.html';
	newWindow = window.open(mediaServerURL,'bfwin','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=740,height=545,resizable=1');
}

function openMp3(dUrl){
	mediaServerURL = 'http://media.pearsoncmg.com/bc/bc_0media_bio/demo/mp3tutors/h/' + dUrl;
	newWindow = window.open(mediaServerURL,'mpwin','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=300,height=150,resizable=0');
}

function openWin(dUrl){
	newWindow = window.open(dUrl,'mywin','toolbar=0,location=0,status=0,menubar=1,scrollbars=1,width=950,height=700,resizable=1');
}


// Globals
AC_FL_RunContent = 0;
DetectFlashVer = 0;

var requiredMajorVersion = 8;	// Major version of Flash required
var requiredMinorVersion = 0;	// Minor version of Flash required
var requiredRevision = 24;		// Revision of Flash required
var externalWin = null;

function popWin(url, params) {
	if (externalWin != null) { externalWin.close(); }
	externalWin = window.open(url, 'pal2_win', params);
	externalWin.focus();
}