/*
 * These functions are for use on the mybt index page.
 * They will open flash files in a stripped down window
 *
 *
 *
 *
 *
*/

// Display an alert if the popup is blocked.
function trytoopen(url, name, opts) {
	var w = window.open(url, name, opts);
	if(String(w).indexOf('bject') == -1) {
		alert('You have popup windows blocked. Please disable your popup blocker to use this feature.');
	}
}

function open_help_swf(name) {
	trytoopen('/tutorial_videos/'+ name +'.swf','Help','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=350,top=' + Math.round(( screen.height - 350 ) / 2) + ',left=' + Math.round(( screen.width - 550 ) / 2));
	return false;
}
