function openWindow(url, winWidth, winHeight){  
  newWindow=window.open(url, "item", 
    "width=" + winWidth + ",height=" + winHeight + ",top=5,left=30, resizable=0,status=1,menubar=0,scrollbars=1");  newWindow.focus();
}