<!--
var isNS = (navigator.appName == "Netscape");
var isNS6 = ( (navigator.appVersion.indexOf("5.") != -1) && isNS);
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
var isMacIE = ( (navigator.userAgent.indexOf("IE 4")  > -1) && (navigator.userAgent.indexOf("Mac")  > -1) );
var isDynamic = ( (document.layers || document.all && !isMacIE));
var os;

if(navigator.appVersion.indexOf('Mac')>=0){
	os = 'mac';
}else{
	os = 'win';
}
//------------------------------------
function windowStatus(){
	window.status = 'Bluetooth';
}
//------------------------------------

function launchFlash(){

	if(ie4){
		window.open('/possibilities_flash.asp', 'splashWin', 'fullscreen=yes,screenX=0,left=0,screenY=0,top=0,width=" + screen.width + ",height=" + screen.height + ",menubar=no,resizable=no,titlebar=no,alwaysRaised=no,status=no,scrollbars=no');
	}
	//else if (ns4 || isNS6){ removed 23.jan. 2004 PS
	//	window.open('/possibilities_flash.asp', 'splashWin', 'width='+ window.screen.width+',height='+window.screen.height+',scrollbars=0,resizable=yes,menubar=0,toolbar=0,status=1,location=0,directories=0,left=0,top=0');
	else if (window.screen){
		window.open('/possibilities_flash.asp', 'splashWin', 'width='+ window.screen.width+',height='+window.screen.height+',scrollbars=0,resizable=yes,menubar=0,toolbar=0,status=1,location=0,directories=0,left=0,top=0');
	} else if (!window.screen){
		window.open('/possibilities_flash.asp', 'splashWin', 'width=720,height=500,scrollbars=0,resizable=yes,menubar=0,toolbar=0,status=1,location=0,directories=0,left=0,top=0');
	}else{
		alert('Sorry, this presentation will not work in your current browser.');
	}
}
//--------------------------------------

//above code by yoleroy@hotmail.com
//-->