<!-- Begin HEADER OPTIONS CODE

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

// ONLY USE lowercase FOR ALL OPTIONS

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON



var color		= "000000"	// HEADER BACKGROUND COLOR
var headerline		= "yes"		// SHOW LINE UNDER HEADER
var lineheight		= "5"		// HEIGHT OF LINE




// COPYRIGHT 2011 © Nell Dickerson
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



var message="You may not right mouse click this page.";
if (navigator.appName == 'Microsoft Internet Explorer'){
function NOclickIE(e) {
if (event.button == 2 || event.button == 3) {
alert(message);
return false;
}
return true;
}
document.onmousedown=NOclickIE;
document.onmouseup=NOclickIE;
window.onmousedown=NOclickIE;
window.onmouseup=NOclickIE;
}
else {
function NOclickNN(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=NOclickNN; }
document.oncontextmenu=new Function("alert(message);return false")
}



document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center" bgcolor="#'+color+'">');
document.write('<a href="index.html"><img src="picts/logo.jpg" border="0"></a><br>');

if (headerline == "yes") {

document.write('</td></tr><tr><td background="picts/header-line.gif">');

document.write('<img src="picts/spacer.gif" height="'+lineheight+'" width="10" border="0"><br>');

}

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



//  End -->
