function view(script,x,y,query) {
  var win;
      win=window.open("/"+script+"/"+query,"",
      "width="+x+", height="+y+", top="+(screen.height/2-y/2)+", left="+(screen.width/2-x/2)+",resizable=1,dependent,scrollbars=1");


}

function wins(script,x,y,query) {

  var win;

      win=window.open("/"+script+"?"+query,"",

      "width="+x+", height="+y+", top="+(screen.height/2-y/2)+", left="+(screen.width/2-x/2)+",resizable=1,dependent,scrollbars=1");



}

