//if (navigator.userAgent.toLowerCase().indexOf('webtv') > -1) {
// top.location.replace('default.shtml');
//} else if (!document.getElementById) {
// top.location.replace('browserupgrade.html');
//}

var newwin;
function launchwin(winurl,winname,winfeatures){
	newwin = window.open(winurl,winname,winfeatures);
	//setTimeout("newwin.focus();",250);
	//newwin.a=window;
	setTimeout('newwin.a=window',1000);
}
function tour(){
	launchwin('tour.htm','name','status=no,height=488,width=500,resizable=1,scrollbars=1');
}

// BROWSER CHECK
//browser = navigator.appName;
//appVer = parseInt(navigator.appVersion);
//ie = "Microsoft Internet Explorer";
//ns = "Netscape";
//if (navigator.appVersion.indexOf("Macintosh") != -1) {
//  isMac = true;
//} else {
//  isMac = false;
//}