   //
   //	searchg.js
   //	Action Machinery's Web Site
   //	Written by: George Patterson
   //	CopyRight(c) 2003 George Patterson all rights reserved
   //	Last modified 7-10-2003
   //	Creates PopUp Window and Searches using Google.com
   //

function Search(form){
searchg = open("","searchg","toolbar=yes,status=yes,scrollbars=yes,location=yes,menubar=yes,directories=yes,resizable=yes,width=600,height=400");
var q = form.query.value;
var plink="http://www.google.com/search?q=" + q +"+site:www.actionmachinery.com&filter=0&num=100&hl=en&ie=ISO-8859-1"
//alert(plink);

searchg.document.writeln ("<html>")
searchg.document.writeln ("<head>")
searchg.document.writeln ("<script language=javascript>")
searchg.document.writeln ("location=\"" + plink + "\";")
searchg.document.writeln ("</script>")
searchg.document.writeln ("<title>Action Machinery Search</TITLE>")
searchg.document.writeln ("</head>")
searchg.document.writeln ("<body></BODY></HTML>")
searchg.document.close()


}



