<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var color		= "000000"	// HEADER BACKGROUND COLOR
var right_click_on	= "yes"		// RIGHT CLICK PROTECTION ON

   if (right_click_on == "yes") {
document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">')
document.write('<script language="JavaScript">')
document.write('function noRightClick() {')
document.write('if (event.button==2) {')
document.write('alert(\'You may not right mouse click this page.\')')
document.write('}')
document.write('}')
document.write('document.onmousedown=noRightClick')
document.write('</script>')
}

document.write('<center><TABLE cellpadding="0" cellspacing="0" border="0" width="800"><tr><td align="left">');
document.write('<a href="index.html"><img src="picts/logo.png" border="0" style="margin-left: 25px;"></a><br>');
document.write('</center></td></tr></table>');

//  End -->