/*
function genPopup(url) {
 	window.open(url, 'POPUP_Xmax_Ymax','scrollbars=no,resizable=0,toolbar=0,directories=0,menubar=0,location=0,fullscreen=yes')
}
*/
<!--//

function genPopup(page) 
{  
  scw = window.screen.availWidth;
  sch = window.screen.availHeight;
  
  window.open(page,"new","width="+scw+",height="+sch+",top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");

}
//-->