<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var color			= "C2C9C7"		// HEADER BACKGROUND COLOR
var bordercolor		= "C2C9C7"		// BORDER COLOR
var borderwidth		= "0"			// BORDER WIDTH
var headerwidth		= "100"			// HEADER TOTAL WIDTH
var pageheight		= "40"			// GLOBAL PAGE HEIGHT
var link			= "index.htm"	// HYPERLINK


// START FLASH HEADER

document.write('<style type="text/css">');
document.write('#mylogo{');
document.write('position: fixed;');
document.write('left: 0px;');
document.write('top: 0px;');
document.write('}');

// IE6 only rule, applied on top of the default above
document.write('* html #mylogoTEMP{');
document.write('position: absolute;);');
document.write('top: expression(document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+0+"px" : body.scrollTop+0+"px");');
document.write('}');
document.write('</style>');

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="'+headerwidth+'" BGCOLOR="#'+color+'" style="border: #'+bordercolor+' '+borderwidth+'px solid;" width="'+headerwidth+'"><tr><td align="left">');
document.write('<div id="mylogo">');
document.write('<a href="'+link+'"><img src="picts/logo.gif" border="0"></a><br>');
document.write('<IMG SRC="picts/spacer.gif"  height="'+pageheight+'" width="'+headerwidth+'" border="0"><br>');
document.write('</div>');
document.write('</td></tr></table>');


//  End -->