<!-- Begin
function VideoPopUp(URL,VideoName,w2,h2) {
	// Remove spaces and other illegal characters out of the name
	s = DemoName;
	filteredValues = "~\/ !@#$^&*()_+-[];',./";     // Characters stripped out
	var i;
	var returnString = "";
	for (i = 0; i < s.length; i++) {  // Search through string and append to unfiltered values to returnString.
		var c = s.charAt(i);
		if (filteredValues.indexOf(c) == -1) returnString += c;
	}
	DemoName = returnString;
	self.name = "main";
	var w = 1024;
	var h = 768;
	
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	if (confirm("This file may take several minutes to download,\n do you wish to continue?")) {
		var scroll = 'yes';
		var full = 'yes';
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',fullscreen='+full+',scrollbars='+scroll+',resizable';
		win = window.open(URL, VideoName, winprops);
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
}
//  End -->
