// Make Popup Windows
function popup( url, w, h, windowName, r, st, s, l, m, t) {
  // Close Prev Pops
  try {
    win.close();
  } catch(e) {    
  }
  // Fudge Height
  // h += 15;
  // Set Too Center
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  // Call popup
 // if((url=="http://adisney.go.com/disneypictures/highschoolmusical3/media/downloads/screensaver/HSM3_ScreenSaver_setup.exe")||(url="http://adisney.go.com/disneypictures/highschoolmusical3/media/downloads/screensaver/HSM3_ScreenSaver_MAC.zip")){
 // win = window.open(url,"_blank");
  //} else {
  win = window.open(url, windowName, 'height=' +h+ ', width=' +w+ ', resizable=' +r+ ', status= ' +st+ ', scrollbars=' +s+ ', location=' +l+ ', menubar=' +m+  ', toolbar= ' +t+ ', left='+winl+', top='+wint);
  // Focus
  win.focus();  
  //}  
}