var isnn,isie
if(navigator.appName=='Microsoft Internet Explorer') //check the browser
{  isie=true }

if(navigator.appName=='Netscape')
{  isnn=true }

function right(e) //to trap right click button 
{
	if (isnn && (e.which == 3 || e.which == 2 ))
		return false;
	else if (isie && (event.button == 2 || event.button == 3)) 
	{
		alert("Sorry, you do not have permission to right click on this page.");
		return false;
	}
		return true;
}

function key(k)   
{
	if(isie) {
		if(event.keyCode==17 || event.keyCode==18 || event.keyCode==93) {
			alert("Sorry, you do not have permission to press this key.") 
			return false;
		 } 
	}

	if(isnn){
		alert("Sorry, you do not have permission to press this key.") 
		return false; }   
}

function hidestatus(){
window.status='';
return true;
}

if (document.layers) document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
if (document.layers) window.captureEvents(Event.KEYPRESS);  
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
document.onmouseover=hidestatus;
document.onmouseout=hidestatus;
document.onkeydown=key;  
document.onmousedown=right;
document.onmouseup=right;
window.document.layers=right;

//function hidestatus(){
//window.status=''
//return true
//}

//if (document.layers)
//document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

//document.onmouseover=hidestatus
//document.onmouseout=hidestatus

// Copyright 2001 by www.CodeBelly.com
// Do *not* remove this notice.

// INSTRUCTIONS
// Place this script in the head of your page.
// Set the variables as indicated below.



// SET THE VARIABLES BELOW

// Set your messages below -- follow the pattern. To add
// more messages, just add more elements to the array.
var message = new Array() // leave this as is

message[0] = "Future Technology Today Where tomorrows solutions start today";
message[1] = "Future Technology Today A full service firm";
message[2] = "Future Technology Today Can provide you with";
message[3] = "Future Technology Today Programming on-site and off-site";
message[4] = "Future Technology Today Conversion of all types";
message[5] = "Future Technology Today Placement Full or Temp";
message[6] = "Future Technology Today Leverage your current technology"


// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).

var reps = 2

// Set the overall speed (larger number = slower action).

var speed = 200

// DO NOT EDIT BELOW THIS LINE.
// ============================
var p=message.length;
var T="";
var C=0;
var mC=0;
var s=0;
var sT=null;
if(reps<1)reps=1;
function doTheHeader(){
T=message[mC];
A();}
function A(){
s++
if(s>8){s=1}
// you can fiddle with the patterns here...
if(s==1){document.title=T}
if(s==2){document.title=T}
if(s==3){document.title=T}
if(s==4){document.title=T}
if(s==5){document.title=T}
if(s==6){document.title=T}
if(s==7){document.title=T}
if(s==8){document.title=T}
if(C<(8*reps)){
sT=setTimeout("A()",speed);
C++
}else{
C=0;
s=0;
mC++
if(mC>p-1)mC=0;
sT=null;
doTheHeader();}}

// ==========================
// (C) 2000 by CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

var mystring = " "
function doTheClock() {
   window.setTimeout( "doTheClock()", 1000 );
   t = new Date();
   if  (document.all || document.getElementById)
       {
   	    mystring = t
        window.status = mystring;
	   }
   else
      {   
       self.status = mystring;
      }
}
