// Copyright (c) 2009 FDM-Design (http://dsgn-ua.com) 
     
function showWindow(url, name,  height, width) {
   newwindow=window.open(url, name, 'height='+height+'px,width='+width+'px,toolbar=no,menubar=no,location=no,status=yes,directories=no,xcenter=no,ycenter=no,dependent=yes,resizable=1,scrollbars=1'); 
   if (window.focus) {newwindow.focus()} 
  return false; 
}