//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 pagefooter() {
	parent.main.document.write('<P STYLE="font-family: arial; font-size: 12px; font-weight: bold;">');
	parent.main.document.write('<A HREF="http://www.interstateproducts.com" target="_top">Home</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="mailto:indsales@interstateproducts.com?subject=More info&amp;body=Please have prices and infomation on the following Eagle Products send." 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_oilers.html" target="_top">Cans &amp; Oilers</A> &#149 ');	
parent.main.document.write('<A HREF="http://www.interstateproducts.com/search.htm" target="_top">Search Site</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">Haz-Mat</A> &#149 ');
parent.main.document.write('<A HREF="guards.html" target="_top">Guards &amp; Protectors</A></P>');

//  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.htm" TARGET="_top">');
	parent.main.document.write('<IMG SRC="images/Earth Saver.jpg" VSPACE=3 BORDER=0 WIDTH=83 ');
	parent.main.document.write('HEIGHT=70 ALT="Safety Products 1-800-474-7294" height="45"></A>');
	parent.main.document.write('</TD><TD><H2>' + pagetitle + '</H2></TD></TR></TABLE>');
}

