// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!

var message="Sorry, that function is disabled.\n\nCode & Graphics Copyright ©SSS Computer Consulting\nOur work is not Public Domain, and should NOT be taken from this site."; // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// End no-right-click  

// open window function start ------->
 
		function NewWnd1(n,w,h,t,l)
	{ 
	var wnd	
	var strFeatures	
		strFeatures ="width="+w+", height="+h+", top="+t+", left="+l+", resizable=0, toolbar=0, location=0, scrollbars=0, status=0, screenX="+l+", screenY="+t+"";
		wnd=window.open(n,null,strFeatures)
		}
// open window function end ---------->




//  scrolling banner script start ---------------------------->   
    // ================================================ //
    // Typing Banner v1.1 by Elton Kong (2000/05/01).   //
    // (c)1998-2000 Elton Kong. All Rights Reserved.    //
    // You can freely use or modify the script, as long //
    // as this message is kept intact in the source.    //
    //                                                  //
    // Contact me by:                                   //
    // elton@graffiti.net                               //
    // http://home.netvigator.com/~freya/               //
    // ================================================ //

    // banner messages
    // interval between message advancement
    // interval between character advancement
    // index of message pointer
    // index of character pointer
    var TB_msg, TB_msg_delay, TB_char_delay, TB_msg_index, TB_char_index;

    function TB_runBanner() {
      document.TB_f.t.value+=TB_msg[TB_msg_index].charAt(TB_char_index);

      if (TB_char_index<(TB_msg[TB_msg_index].length-1)) {
        TB_char_index++;
        setTimeout("TB_runBanner()", TB_char_delay);
      } else {
        TB_msg_index =(TB_msg_index+1)%TB_msg.length;
        TB_char_index=0;
        setTimeout("TB_startBanner()", TB_msg_delay);
      }
    }

    function TB_startBanner() {
      document.TB_f.t.value="";
      TB_runBanner();
    }

    function TB_initBanner() {
      TB_msg   = new Array();

      
      TB_msg[0]="Team White thrashes Team Blue in 6th Alumni Hockey game...";
      TB_msg[1]="Click below to visit our Feb/2005 Alumni Hockey Game Page...";
      TB_msg[2]="Annual golf tournament targeted for Sat., July 16, 2005...";
      TB_msg[3]="Visit our Jul/2005 Building Champions Golf Tournament page & register...";
      TB_msg[4]="Submit or update your contact info on our Contacts page...";
            
      TB_msg_delay =2500; // milli-seconds
      TB_char_delay=50;  // milli-seconds

      TB_msg_index =0;
      TB_char_index=0;

      TB_startBanner();
    }

    // ================= //
    // End Typing Banner //
    // ================= //
//  scrolling banner script end ----------------------------> 





// floating menu function start //
/*
Floating Menu script-  Roy Whittle (http://www.javascript-fx.com/)
Script featured on/available at http://www.dynamicdrive.com/
This notice must stay intact for use
*/
//Enter "frombottom" or "fromtop"

function JSFX_FloatTopDiv()
{
	var startX = 30,
	startY = 100;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d = document;
	function ml(id)
	{
		var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.left=x;this.style.top=y;};
		el.x = startX;
		if (verticalpos=="fromtop")
		el.y = startY;
		else{
		el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		el.y -= startY;
		}
		return el;
	}
	window.stayTopLeft=function()
	{
		if (verticalpos=="fromtop"){
		var pY = ns ? pageYOffset : document.body.scrollTop;
		ftlObj.y += (pY + startY - ftlObj.y)/8;
		}
		else{
		var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		ftlObj.y += (pY - startY - ftlObj.y)/8;
		}
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 10);
	}
	ftlObj = ml("divStayTopLeft");
	stayTopLeft();
}
// end of floating menu function //

  