<!--
// preload images
function PreloadImages(){
  if (document.images){
		onImages = new Array(7);
		for (var i=0; i<7; i++){ onImages[i] = new Image(); }
    onImages[0].src = "images/companyservices_b.gif";
    onImages[1].src = "images/candidateservices_b.gif";
    onImages[2].src = "images/faqs_b.gif";
    onImages[3].src = "images/positions_b.gif";
    onImages[4].src = "images/about_b.gif";
    onImages[5].src = "images/current_b.gif";
    onImages[6].src = "images/contact_b.gif";
    
    offImages = new Array(7);
  	for (var i=0; i<7; i++){ offImages[i] = new Image(); }
    offImages[0].src = "images/companyservices.gif";
    offImages[1].src = "images/candidateservices.gif";
    offImages[2].src = "images/faqs.gif";
    offImages[3].src = "images/positions.gif";
    offImages[4].src = "images/about.gif";
    offImages[5].src = "images/current.gif";
    offImages[6].src = "images/contact.gif";
		}
  }
PreloadImages();

// image rollovers
function ImageOn(imageName,index){
  if (document.images){
    document.images[imageName].src = onImages[index].src;
    }
  }
function ImageOff(imageName,index){
  if (document.images){
    document.images[imageName].src = offImages[index].src;
    }
  }
  
// Pop up window function
function PopUp(url){
  newone=window.open(url,'popup', 'toolbar=no,directories=no,titlebar=no,location=no,status=no,scrollbars=yes,resizable=yes,menubar=no,width=500,height=480');
  }

//set focus to first field
function set_focus(which){
	if (document.form1.elements[which].value == ''){ document.form1.elements[which].focus(); }
	}
// -->
