<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var color		= "FFFFFF"		// HEADER BACKGROUND COLOR

var showimage 		= "yes"	 		// SHOW A SMALL IMAGE ON THE HEADER RIGHT SIDE
var imaglink		= "contact.htm"		// SMALL IMAGE PAGE LINK


// YOU DO NOT NEED TO EDIT BELOW THIS LINE





document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" BGCOLOR="#'+color+'"><tr><td align="left">');
document.write('<a href="index.html"><img src="picts/logo.jpg" border="0"></a><br>');

/*these are the lines that puts the telephone number in the header*/
document.write('</td><td align="right" width="150">');
   if (showimage == "yes") {
document.write('<a href="'+imaglink+'"><img src="picts/test3.jpg" border="0" alt="Etch Tech Ltd"></a><br>');
}

/*this writes the @ sign into the header*/
document.write('</td><td align="right" width="60">');
   if (showimage == "yes") {
/*document.write('<a href="'+imaglink+'"><img src="picts/header_image.jpg" border="0"></a><br>');*/
}

else {
document.write('<img src="picts/spacer.gif" width="10" height="10"><br>');
}
document.write('</td></tr></table>');





//  End -->
