function popUpWin(url, winName, width, height) {
   var features = "status,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+",top=0,left=0,screenX=0,screenY=0";
   window.open(url, winName, features);
}
