


<!--
var fcolor="#804000";

function MakeArray(n) {
	this.length = n
	return this
}
monthNames = new MakeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"
dayNames = new MakeArray(7)
dayNames[1] = "Sunday"
dayNames[2] = "Monday"
dayNames[3] = "Tuesday"
dayNames[4] = "Wednesday"
dayNames[5] = "Thursday"
dayNames[6] = "Friday"
dayNames[7] = "Saturday"

function customDateString() {
	currentDate = new Date()
	var theDay = dayNames[currentDate.getDay() + 1]
	var theMonth = monthNames[currentDate.getMonth() + 1]
	msie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
	if (msie4) {
	    var theYear = currentDate.getYear()
	}
	else {
	     var theYear = currentDate.getYear() +1900
	}
	return theDay + ", " + theMonth + " " + currentDate.getDate() + ", " + theYear
}

document.writeln('<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BACKGROUND="/graphics/nlogo2.jpg" >');
document.writeln('<tr ALIGN=LEFT VALIGN=TOP>');
document.writeln('<td ALIGN=LEFT VALIGN=TOP>');
document.writeln('<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="640" >');
document.writeln('<tr ALIGN=LEFT VALIGN=CENTER>');
document.writeln('<td WIDTH="200">');
document.writeln('<A HREF="/index.html">');
document.writeln('<img src="/graphics/nlogo1.jpg" width="200" height="135" alt="Centech s Home Page" Border="0"></a></td>');
document.writeln('<td ALIGN=LEFT VALIGN=TOP WIDTH="429">');
document.writeln('<table BORDER=0 CELLSPACING=0 CELLPADDING=0   ><tr>');
document.writeln('<td ALIGN=CENTER 	valign=bottom>');
document.writeln('<table  width="*" border="0" cellspacing="0" cellpadding="0" ><tr>');
document.writeln('<TD width="*" vAlign=top align=left >');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="/index.html"><FONT face=Arial color='+fcolor+'><b>Home</b></A></FONT>');
document.writeln('</td>');
document.writeln('<td width=8 align=center>|</td>');
document.writeln('<TD width="*" vAlign=top align=left>');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="/about/index.html"><FONT face=Arial color='+fcolor+'><b>About</b></A></FONT>');
document.writeln('</td>');
document.writeln('<td width=8 align=center>|</td>');
document.writeln('<TD width="*" vAlign=top align=left>');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="/ordering/index.html"><FONT face=Arial color='+fcolor+'><b>Ordering Info</b></A></FONT>');
document.writeln('</td>');
document.writeln('<td width=8 align=center>|</td>');
document.writeln('<TD width="*" vAlign=top align=left>');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="/info/friend.html"><FONT face=Arial color='+fcolor+'><b>Tell A Friend</b></A></FONT>');
document.writeln('</td>');
document.writeln('<td width=8 align=center>|</td>');
document.writeln('<TD width="*" vAlign=top align=left>');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="/info/help/index.html"><FONT face=Arial color='+fcolor+'><b>Help Me Find</b></A></FONT>');
document.writeln('</td>');
document.writeln('<td width=8 align=center>|</td>');
document.writeln('<TD width="*" vAlign=top align=left>');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="mailto:centech@centechwire.com"><FONT face=Arial color='+fcolor+'><b>Contact Us</b></A></FONT>');
document.writeln('</td></tr></table>');
document.writeln('</tr>');
document.writeln('<tr><td colspan=11 ALIGN=CENTER 	valign=bottom  HEIGHT=75>');
document.writeln('<center><img src="/graphics/banner1sve.jpg" height=50 width=316></center></td></tr>');

document.writeln('<td height=30 align=right valign=bottom>');
document.writeln('<table  width="100%" border="0" cellspacing="0" cellpadding="0" ><tr>');
document.writeln('<TD align=left valign=bottom width=50%>');
document.writeln('<FONT FACE=ARIAL color=#ffffff style="FONT-SIZE: 8pt; TEXT-DECORATION: none"><B>');
document.writeln(customDateString());
document.writeln('</B></FONT>');
document.writeln('</td>');
document.writeln('<TD width="*" vAlign=top align=right >');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="http://centechwire.com/Merchant2/merchant.mvc?Screen=BASK&Store_Code=CO"><FONT face=Arial color=#ffff00><b>Shopping Cart</b></A></FONT>');
document.writeln('</td>');
document.writeln('<td width=10 align=center>    </td>');
document.writeln('<TD width="*" vAlign=top align=right>');
document.writeln('<A style="FONT-SIZE: 9pt; TEXT-DECORATION: none"  href="/info/preorder.html"><FONT face=Arial color=#ffff00><b>Check Out</b></A></FONT>');
document.writeln('</td></tr></table>');


document.writeln('</tr></table>');
document.writeln('</td></tr></table>');
document.writeln('</td></tr></table>');



//-->

