var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function AllAboutBreasts_DoFSCommand(command, args) {
	var AllAboutBreastsObj = isInternetExplorer ? document.all.AllAboutBreasts : document.AllAboutBreasts;
	//
	  if (command == "openModule") {
		openABBModule();
	  }
	//
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub AllAboutBreasts_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call AllAboutBreasts_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
function openABBModule() {
	openWin = window.open("http://www.teenhealthtalk.org/assets/swf/abb_popup/THTloader.html", "ABB", "top=50,left=50,height=425,width=745,buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no"); 
	openWin.focus();
}
