// JScript source code
function writeMenu()
{
	document.write("<div id=\"Menu\">" + 
		"<a href=\"main.html\">Home</a><img align=\"middle\" style=\"margin-top:-3px\" src=\"graphics/mnu_bar.gif\" />  <a href=\"facilities.html\">Facilities</a><img align=\"middle\" style=\"margin-top:-3px\" src=\"graphics/mnu_bar.gif\" />        <a href=\"products.html\">Products</a><img align=\"middle\" style=\"margin-top:-3px\" src=\"graphics/mnu_bar.gif\" /><a href=\"about.html\">About " +
		"Us</a><img align=\"middle\" style=\"margin-top:-3px\" src=\"graphics/mnu_bar.gif\" /><a href=\"contact.html\">Contact</a>" + 
		"</div>");
}

function writeFooter()
{
	document.write("<br clear=\"all\" />" +
		"<div id=\"Footer\">" + 
		"<a href=\"main.html\">Home</a>&nbsp;&nbsp;|&nbsp;<a href=\"facilities.html\">Facilities</a>&nbsp;|&nbsp;<a href=\"Products.html\">Products</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=\"about.html\">About " + 
		"Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=\"contact.html\">Contact</a>&nbsp;&nbsp;&nbsp;&nbsp;Copyright " +
		"2003 Perry Products PR" +
		"</div>");	
}

function writeProductsBox()
{
	document.write("<table width=\"254\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">" +
		"<tr>" +
		"<td width=\"100%\" align=\"center\"><img src=\"graphics/curved_top.gif\" /></td>" +
		"</tr>" +
		"<tr>" +
		"<td class=\"toolbox\"><h4 style=\"margin-top:0px;padding-top:0px;border-bottom:1px dotted #f0f0f0\"><img align=\"middle\" src=\"graphics/go_but.jpg\" />" +
		"PRODUCTS</h4>" +
		"<p>Select one of our product lines to see more information:</p>" +
		"<select name=\"products\" onchange=\"javascript:myNavigate(this.value)\" style=\"font-family:Verdana;font-size:11px;width:200px\">" +
		"<option value=\"-1\">-- Product lines --</option>" +
		"<option value=\"products.html#advantapure\">AdvantaPure</option>" +
		"<option value=\"products.html#triclover\">Alfa-Laval/Tri-Clover</option>" +
		"<option value=\"products.html#avco\">Avco Valves</option>" +
		"<option value=\"products.html#badger\">Badger Meter</option>" +
		"<option value=\"products.html#enerquip\">Enerquip Heat Exchangers</option>" +
		"<option value=\"products.html#fasteners\">Fasteners</option>" +
		"<option value=\"products.html#fischer\">Georg Fischer</option>" +
		"<option value=\"products.html#gerlin\">Gerlin Inc.</option>" +
		"<option value=\"products.html#hayward\">Hayward</option>" +
		"<option value=\"products.html#hoses\">Hoses</option>" +
		"<option value=\"products.html#inline\">Inline Ball Valves</option>" +
		"<option value=\"products.html#itt\">ITT Engineered Valves</option>" +
		"<option value=\"products.html#jacoby\">Jacoby Tarbox</option>" +
		"<option value=\"products.html#keystone\">Keystone</option>" +
		"<option value=\"products.html#kusel\">Kusel Equipment Co.</option>" +
		"<option value=\"products.html#ladish\">Ladish Valves</option>" +
		"<option value=\"products.html#rubberfab\">Rubber Fab</option>" +
		"<option value=\"products.html#serfilco\">Serfilco</option>" +
		"<option value=\"products.html#special\">Special Alloy Products</option>" +
		"<option value=\"products.html#stainless\">Stainless Steel Structural</option>" +
		"<option value=\"products.html#ssthreaded\">Stainless Steel Threaded Rods</option>" +
		"<option value=\"products.html#sstubing\">Stainless Steel Tubing</option>" +
		"<option value=\"products.html#strahman\">Strahman</option>" +
		"<option value=\"products.html#strongwell\">Strongwell</option>" +
		"<option value=\"products.html#trent\">Plymouth Tube Co.</option>" +
		"<option value=\"products.html#tylok\">Tylok Tube Fittings</option>" +
		
		
		"</select>" +
		"</td>" +
		"</tr>" +
		"<tr>" +
		"<td width=\"100%\" align=\"center\"><img src=\"graphics/curved_bottom.gif\" /></td>" +
		"</tr>" +
		"</table>");
}

function writeRegisterBox()
{
	return true;
	document.write("<table width=\"254\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" >" +
		"<tr>" +
		"<td width=\"100%\" align=\"center\"><img src=\"graphics/curved_top.gif\" /></td>" +
		"</tr>" +
		"<tr>" +
		"<td class=\"toolbox\"><h4 style=\"margin-top:0px;padding-top:0px;border-bottom:1px dotted #f0f0f0\"><img align=\"middle\" src=\"graphics/go_but.jpg\" />" +
		"REGISTER</h4>" +
		"<p>Sign up to receive e-mail updates from Perry Products Puerto Rico</p>" +
		"<p>e-mail: <input style=\"font-family:verdana, arial;font-size:10px;width:150px;\" /> <img align=\"middle\" src=\"graphics/go_but.jpg\" /></p>" +
		"</td>" +
		"</tr>" +
		"<tr>" +
		"<td width=\"100%\" align=\"center\"><img src=\"graphics/curved_bottom.gif\" /></td>" +
		"</tr>" +
		"</table>");
}


function myNavigate(URL)
{
	if (URL != -1)
	{
		window.document.location = URL;
	}
}