function popupWindow(theURL, theWidth, theHeight) { 
  popupwindow=window.open(theURL,'popupwindow','status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + theWidth + ',height=' + theHeight);
  popupwindow.focus();
}

function popupWindow2(theURL, theWidth, theHeight) { 
  popupwindow=window.open(theURL,'popupwindow','status=no,menubar=yes,scrollbars=yes,resizable=yes,width=' + theWidth + ',height=' + theHeight);
  popupwindow.focus();
}

function go(){
location=document.selectlanguageform.selectLanguageList.options[document.selectlanguageform.selectLanguageList.selectedIndex].value
}

function videoplayer(video) {
var so = new SWFObject('http://www.voanews.com/voanews_shared/flash/mediaplayer.swf','mpl','380','285','7'); 
so.addVariable('file', video); 
so.addParam('allowfullscreen','true'); 
so.addParam('allowscriptaccess','always'); 
so.addVariable('height','285'); 
so.addVariable('width','380'); 
so.addVariable('displayheight','285'); 
so.addVariable('autostart','true');
so.write('box'); 
}


function audioplayer(video,image) {
var so = new SWFObject('http://www.voanews.com/voanews_shared/flash/mediaplayer.swf','mpl','380','285','7'); 
so.addVariable('file', video); 
so.addVariable('image', image);
so.addParam('allowfullscreen','true'); 
so.addParam('allowscriptaccess','always'); 
so.addVariable('height','285'); 
so.addVariable('width','380'); 
so.addVariable('displayheight','285'); 
so.addVariable('autostart','true');
so.write('box'); 
}


