function openWindow(file, name, W, H) 
{ 
  option = "\"scrollbars=yes,width=" + W + ",height=" + H + "\"";
  window.open(file,name,option);
} 

