 function Openme(url)
 { 
 var kiosk;
 
 screenw = 640 
 screenh = 550 
 screen_top = 60
 screen_left = (screen.height/2) - (300/2);
 windowprops = "top=" + screen_top + ",left=" + screen_left + ",resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no"+ ",width=" + screenw + ",height=" + screenh;
 kiosk = window.open(url,"xmain",windowprops)
 } 