//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;
	}

// Enlarge image code
function supersize( pid ) {
	document.location = "../../supersize.html?product=" + pid;
}
function eaglePagetitle(pagetitle) {
	parent.main.document.write('<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>');
}

function pagefooter() {
	parent.main.document.write('<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="../../sitemap.html" target="main">Site Map</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="../../drums.html" target="_top">Plastic Drums</A> &#149 ');
	parent.main.document.write('<A HREF="../../guards.html" target="_top">Guards &amp; Protectors</A></P>');
	parent.main.document.write('<p>Website design and maintenance by: <a target="_blank" href="http://www.rivermerchant.com">River Merchant</a>');

//  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>');
}
function eaglelogo_new(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>');
}
function showTitle( pagetitle ) {
	title = '<table border="0" cellpadding="0" cellspacing="0"><tr valign="top"><td class="eaglelogo">';
	title += '<a href="../../index.html" target="_top">';
	title += '<img src="../../images/eagle120.gif" border="0" width="120" height="50" ';
	title += 'alt="Eagle Manufacturing Company (304)737-3171" style="float: left;" />';
	title += '</a></td><td class="pagetitle">' + pagetitle + '</td></tr></table>';
	parent.main.document.write( title );
}