 function menuselect(obj)
 {
     for (i = 1; i < obj.length; i++)
        if (obj[i].selected == true)
           eval(obj[i].value);
}


var newWin = null
function  newWindow(winUrl,videoName,wval,hval) {
  
 var newWin=window.open(winUrl,videoName,'width='+wval+',height='+hval+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no');
newWin.moveTo(((screen.width/2)-(wval/2)),((screen.height/2)-(hval/2)))

if ( (navigator.appName != "Microsoft Internet Explorer") && (navigator.appVersion.substring(0,1) >="3") ) newWin.focus();
}