function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);}
  
function Other(other, myname) {
var W=560;
var H=380;
var winl = (screen.width - W) / 2;
var wint = (screen.height - H) / 2;
var mystring = 'scrollbars=yes,status=yes,top='+wint+',left='+winl+',height='+H+',width='+W
win = window.open(''+other, myname, mystring);
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

