<!--


function MM_openBrWindow(theURL,winName,features) { //v2.0
   var newWindow = window.open(theURL,winName,features);
   newWindow.focus();
} 

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
function MM_openBrWindowPosition(theURL,winName,features) { //v2.0
   var win_position = ',left=300,top=200,screenX=500,screenY=500';
   var newWindow = window.open(theURL,winName,features+win_position);
   newWindow.focus();
}
//-->
 
 
 
 
 
  /*
  Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
  Permission granted to Dynamic Drive to feature script in archive
  For full source, usage terms, and 100s more DHTML scripts, visit http://dynamicdrive.com
  */
 
  var win = null;
  function NewWindow(mypage,myname,w,h,scroll,toolbar,resizable){
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings =
  'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',toolbar,resizable'
  win = window.open(mypage,myname,settings)
  if(win.window.focus){win.window.focus();}
 }