function MM_openBrWindow(theURL,winName,features) { //v2.0
  	newwin=window.open(theURL,winName,features);
	newwin.focus();
}

function jump( form ) { 

	var newIndex = form.fieldname.selectedIndex; 
	var url = form.fieldname.options[ newIndex ].value; 
	window.location.assign( url ); 


} 

function loadMovie()
	{
	var args = loadMovie.arguments;
	var filename="video"+args[1]+args[0]+".html";
	var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP"): new XMLHttpRequest();

			if (x)
				{
				x.onreadystatechange = function()
					{
					if (x.readyState == 4 && x.status == 200)
						{
						el = document.getElementById('video');
						el.innerHTML = x.responseText;
						}
					}
				x.open("GET", filename, true);
				x.send(null);
				document.getElementById('placeholder').style.display="none";
				}

	}