//***************************
function pagejump(to_url) {
//***************************
        if (to_url != "") {
        window.location=to_url
        }
}

//***************************
	function launchVideo(strFilename, objSelect) {
//***************************
		if (objSelect.value != "") {
			var intX = 320;
			var intY = 240;
			if (objSelect.value == "low.asx" || objSelect.value == "low.ram") {
				intX = 160;
				intY = 120;
			}
			
		}

	}
	
//***************************
	function popupWindow(url,winName,w,h,scrollbars,resizable) {
//***************************
/*
**	parameters: url = URL of the popup window
**	winName = window name
**	w = width
**	h = height
**	scrollbars = use scrollbars?
**	resizable = is window resizeable?
*/
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=' + (scrollbars ? 'yes' : 'no') + ',resizable=' + (resizable ? 'yes' : 'no') + ',menubar=no';
	var popup = window.open(url,winName,windowprops);
	//opener allows popup windows to communicate with it's owner
	//please review http://www.webreference.com/js/tutorial1/opener.html for more information on opener
	if (popup.opener == null) {		//check if opener property exists
		popup.opener = self;		//define opener property
	}
	popup.focus();
}

//***************************
function MM_openBrWindow(theURL,winName,features) { //v2.0
//***************************
  window.open(theURL,winName,features);
}
