<!--
// Added this code to prevent the scoffing of any pics I post on the site.

var right_click_on	= "no"		                                // POPUP RIGHT CLICK PROTECTION ON
var right_click_text	= "You may not right mouse click this page"	// TEXT FOR THE RIGHT CLICK PROTECTION

if (right_click_on == "yes")
	{
	document.write('<script language="JavaScript">')
	document.write('function noRightClick() {')
	document.write('if (event.button==2) {')
	document.write('alert(\''+right_click_text+'\')')
	document.write('}')
	document.write('}')
	document.write('document.onmousedown=noRightClick')
	document.write('</script>')
	}

function scroll(seed)
    {
//    var m1  = "Spring Special!  ";
//    var m2  = "Travel in 2006 at 2005 prices plus, ";
//    var m3  = "travel 5 days for the price of 4!";
//    var m4  = "";
//    var msg=m1+m2+m3+m4;
//    var out = " ";
//    var c = 1;
//    if (seed > 100) {
//    seed--;
//    cmd="scroll("+seed+")";
//    timerTwo=window.setTimeout(cmd,100);
//    }
//    else if (seed <= 100 && seed > 0) {
//    for (c=0 ; c < seed ; c++) {
//    out+=" ";
//    }
//    out+=msg;
//    seed--;
//    window.status=out;
//    cmd="scroll("+seed+")";
//    timerTwo=window.setTimeout(cmd,100);
//    }
//    else if (seed <= 0) {
//    if (-seed < msg.length) {
//    out+=msg.substring(-seed,msg.length);
//    seed--;
//    window.status=out;
//    cmd="scroll("+seed+")";
//    timerTwo=window.setTimeout(cmd,100);
//    }
//    else {
//    window.status=" ";
//    timerTwo=window.setTimeout("scroll(100)",75);
//    }
//    }
    }

function blockError(){return true;}
window.onerror = blockError;
// -->