// JavaScript Document

function newWindow (mypage,myname,w,h,features) {
  mypage = 'https://transactions.c5groupinc.com/event_reg.php?conf=2724&site=4&lang=en&gap=5';
  myname = 'reg_now';
  w=720;
  h=600;
  features="";
  
  if(screen.width){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  }else{winl = 0;wint =0;}
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  
  var settings = 'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,width='+w+',height='+h+',top='+wint+',left='+winl+',resizable=0';
  
  win = window.open(mypage,myname,settings);
  win.window.focus();
  
}
