<!--hide this script from non-javascript-enabled browsers

if (document.images) {

  HomeOn = new Image();

  HomeOn.src = "images/home_on.gif";

        

  ClientsOn = new Image();

  ClientsOn.src = "images/clients_on.gif";

  

  ContactOn = new Image();

  ContactOn.src = "images/contact_on.gif";
  
  
  
  HomeOff = new Image();

  HomeOff.src = "images/home_off.gif";

        

  ClientsOff = new Image();

  ClientsOff.src = "images/clients_off.gif";

  

  ContactOff = new Image();

  ContactOff.src = "images/contact_off.gif";

}



function changeImages() {

  if (document.images) {

    for (var i=0; i<changeImages.arguments.length; i+=2) {

      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");

    }

  }

}


function form_validate(theForm)
{

  if (theForm.firstname.value.length < 1)
  {
    alert("Please enter a first name.");
    theForm.firstname.focus();
    return (false);
  }
  
   if (theForm.lastname.value.length < 1)
  {
    alert("Please enter a last name.");
    theForm.lastname.focus();
    return (false);
  }
  
   if (theForm.email.value.length < 1)
  {
     alert("Please enter an email address.");
    theForm.email.focus();
    return (false);
  } 
  
   if (theForm.comments.value.length < 1)
  {
    alert("Please enter a comment.");
    theForm.comments.focus();
    return (false);
  }
  
  return (true);
}

function SetFocus()
	{
	document.contact.name.focus();
	}
	
	
// RightClickMenu-1

function showmenuie5(){
		var rightedge=document.body.clientWidth-event.clientX
		var bottomedge=document.body.clientHeight-event.clientY
		if (rightedge<ie5menu.offsetWidth)
			ie5menu.style.left=document.body.scrollLeft+event.clientX-ie5menu.offsetWidth
		else
			ie5menu.style.left=document.body.scrollLeft+event.clientX
		if (bottomedge<ie5menu.offsetHeight)
			ie5menu.style.top=document.body.scrollTop+event.clientY-ie5menu.offsetHeight
		else
			ie5menu.style.top=document.body.scrollTop+event.clientY
		ie5menu.style.visibility="visible"
		return false
}
function hidemenuie5(){
		ie5menu.style.visibility="hidden"
}
function highlightie5(){
		if (event.srcElement.className=="menuitems"){
			event.srcElement.style.backgroundColor="highlight"
			event.srcElement.style.color="white"
		}
}
function lowlightie5(){
		if (event.srcElement.className=="menuitems"){
			event.srcElement.style.backgroundColor=""
			event.srcElement.style.color="black"
		}
} 
function jumptoie5(){
		if (event.srcElement.className=="menuitems"){
			if (event.srcElement.url != ''){
				if (event.srcElement.getAttribute("target")!=null)
					window.open(event.srcElement.url,event.srcElement.getAttribute("target"))
				else
					window.location=event.srcElement.url
			}
		}
}


// stop hiding -->