//eagle.js
//Copyright (C) November 1, 2001 Daniel A. Smith

function topreload(filespec) {
	// if this file is the top document, reload top with filespec
	if (top.location == self.location) {
		top.location.href = filespec
	}
}

function framedreload(filespec) {
	// if this file is not the top document, reload top with filespec
	if (top.location != self.location) {
		top.location.href = filespec
	}
}

function toggle(xx,yy) {
	// toggle CLAWS yes/no boxes
		if (xx.checked) {
			yy.checked = false;
		}
	}

	function enlargeImage(fname, numw, numh, atxt, captxt, headtxt) {
		parent.picfilename = fname;
		parent.imagewidth = numw;
		parent.imageheight = numh;
		parent.alttext = atxt;
		parent.imagecaption = captxt;
		parent.heading = headtxt;
		parent.main.location.href = "enlarge.html";
	}

	function testBrowser(yourmsg) {
		parent.msg = yourmsg;
		browsername = navigator.appName;
		nntest = browsername.substring(1,5);
		if ( nntest != "icro" ) {
			yourmsg = "<CENTER><P CLASS='netwarn'><B>Some page features not shown.</P>";
			yourmsg += "<CENTER><P CLASS='photo'><B>This page is best viewed with <BR>Microsoft Internet Explorer</B></P>";
		}
		parent.msg = yourmsg;
	}
	
	function doSearch() {
		html = 'You are searching for "' + parent.main.form1.query.value + '".';
		window.status = html;
		alert(html);
	}

function pagefooter() {
	parent.main.document.write('<FORM NAME="form1" onSubmit="return parent.buttons.doSearch();"><P STYLE="font-family: arial; font-size: 12px; font-weight: bold;">');
	parent.main.document.write('<A HREF="index.html" target="_top">Home</A> &#149 ');
	parent.main.document.write('<A HREF="about.html" target="_top">About Us</A> &#149 ');
	parent.main.document.write('<A HREF="claws.html" target="_top">C.L.A.W.S.</A> &#149 ');
	parent.main.document.write('<A HREF="contact.html" target="_top">E-Mail</A><BR>');
	parent.main.document.write('<A HREF="new.html" target="_top">New Products</A> &#149 ');
	parent.main.document.write('<A HREF="cans.html" target="_top">Safety Cans</A> &#149 ');
	parent.main.document.write('<A HREF="cabinet.html" target="_top">Safety Cabinets</A> &#149 ');
	parent.main.document.write('<A HREF="hazmat.html" target="_top">Spill Containment</A> &#149 ');
	parent.main.document.write('<A HREF="guards.html" target="_top">Guards &amp; Protectors</A><BR>');
//	parent.main.document.write('Search: <INPUT TYPE="textbox" SIZE=12 NAME="query"><INPUT TYPE="button" NAME="go" VALUE="GO" onClick="parent.buttons.doSearch();"></FORM>');

//  Removed update info per John Mitchell's request 10-DEC-2001
//	parent.main.document.write('<P STYLE="font-family: arial; font-size: 8pt; text-align: center;">');
//	parent.main.document.write('Updated: November 20, 2001</P>');
}

function eaglelogo(pagetitle) {
	parent.main.document.write('</CENTER><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>');
	parent.main.document.write('<TR VALIGN="top"><TD WIDTH=130>');
	parent.main.document.write('<A HREF="index.html" TARGET="_top">');
	parent.main.document.write('<IMG SRC="images/eagle120.gif" VSPACE=3 BORDER=0 WIDTH=120 ');
	parent.main.document.write('HEIGHT=50 ALT="Eagle Manufacturing Company (304) 737-3171"></A>');
	parent.main.document.write('</TD><TD CLASS="pagetitle">' + pagetitle + '</TD></TR></TABLE>');
}
