function openWindow(url, name, width, height) {
  popupWin = window.open(url, '', ',width=' + width + ',height=' + height +  ',status,resizable,left=25,right=25,scrollbars=0');
  popupWin.focus();
}

