function openWindow(url, name, width, height) {
  popupWin = window.open(url, name, ',width=' + width + ',height=' + height +  ',scrollbars=0,status=0,resizable=0,left=25,right=25')
}

function popupWindow(url, name) {
  window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
