function PopUpWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function NewMediaWindow(theURL) {
    window.open(theURL, '', 'status=yes,width=800,height=600,resizable,scrollbars');
}
