var bName = navigator.appName;
	var bVer = parseInt(navigator.appVersion);

	var browser = navigator.appName;
	var ie = "Microsoft Internet Explorer";
	var netscape = "Netscape";
	var os = navigator.platform;
	var mac = 'MacPPC'

function openVideo(video_url,Name, Win) {

if ((bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 3)) {
 
videowin = window.top.open("",Name, Win);
videowin.location.href=video_url;
if ( videowin.opener == null ) videowin.opener = window.top;
if (!(bName == "Microsoft Internet Explorer" && bVer == 3)) videowin.focus();
}
}