<!--
var obj = null;

//BROWSER SNIFF
var isIE4 = (document.all && !document.getElementById) ? true : false;
var isIE5 = (document.all && document.getElementById) ? true : false;
var isNS6 = (!document.all && document.getElementById) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
var isDHTML = (isIE5 || isNS6);
var isPc = navigator.userAgent.indexOf("Windows") != -1;
var isMac = !isPc;
 
//redirect on NS4
if(!isDHTML) {
	document.location.replace('oldbrowser.htm');
}

//FUNCTIONS

function doOnLoad() {
	
}

function pop360(which) {
	var dx=540;
	var dy=330;

	var w = window.open('pop360_' + which + '.htm', '_blank', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}

function popVideo(which) {
	var dx=850;
	var dy=540;

	var w = window.open(which, '_blank', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}
//-->
