 function print_it(url,query) {
   var win;
   win=window.open ("print.php?url=" + url + "&query=" + query + "","Print","width=600,height=700,scrollbars=yes,resizable=no,screenX=0,screenY=0");
 }

 function send_it(url,query) {
   var win;
   win=window.open ("send.php?url=" + url + "&query=" + query + "","Send","width=400,height=350,scrollbars=yes,resizable=no,screenX=0,screenY=0");
 }
 
 function help(page) {
   var win;
   win=window.open ("help.php?page=" + page + "","Help","width=400,height=350,scrollbars=yes,resizable=no,screenX=0,screenY=0");
 }
