// CODE FOR LOGO BAND
// CodeLogoBand.js

// WRITES THE EXTERNAL CODE DIRECTLY INTO THE WEB PAGE HTML FILE
var writeExtCode = '';

		// AREA ABOVE THE LOGO
writeExtCode += '<table>';
writeExtCode += '	<tr>';
writeExtCode += '		<td class="high2">';
writeExtCode += '		</td>';
writeExtCode += '	</tr>';
writeExtCode += '</table>';

		// AREA BEHIND THE LOGO + LOGO
writeExtCode += '<table>';
writeExtCode += '	<tr>';
writeExtCode += '		<td class="space200">';
writeExtCode += '		</td>';

writeExtCode += '		<td class="logoband"';
writeExtCode += '		<a href="#"><img src="images/NobleFursScriptLogo.gif" alt="Noble Furs, the elegant alternative to real fur" border="0"></a>';
writeExtCode += '		</td>';

writeExtCode += '		<td class="space30">';
writeExtCode += '		</td>';
writeExtCode += '	</tr>';
writeExtCode += '</table>';


document.writeln(writeExtCode)