
<!-- Hide this code from non-JavaScript browsers
var Roll=new Array();


Roll["a"] = new RollOver("images/nav_on_02.gif");
Roll["b"] = new RollOver("images/nav_on_03.gif");
Roll["c"] = new RollOver("images/nav_on_04.gif");
Roll["d"] = new RollOver("images/nav_on_05.gif");
Roll["e"] = new RollOver("images/nav_on_06.gif");
Roll["f"] = new RollOver("images/nav_on_07.gif");
Roll["g"] = new RollOver("images/nav_on_08.gif");


function RollOver(on_url)
{       this.on        = new Image();
        this.on.src    = on_url;
}

function flip ()
{       if(arguments.length==1) arguments[1]=arguments[0];
        for(i=0 ; i<arguments.length ; i+=2){
                temp = document.images[arguments[i]].src;
                document.images[arguments[i]].src  = Roll[arguments[i+1]].on.src;
                Roll[arguments[i+1]].on.src = temp;
        }
}


// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 6000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!
Picture[1]  = 'images/scale.gif';
Picture[2]  = 'images/scale1.gif';
Picture[3]  = 'images/scale2.gif';
Picture[4]  = 'images/scale3.gif';
Picture[5]  = 'images/scale4.gif';
Picture[5]  = 'images/scale5.gif';





// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "This is the first caption.";
Caption[2]  = "This is the first caption.";
Caption[3]  = "This is the first caption.";
Caption[4]  = "This is the first caption.";
Caption[5]  = "This is the first caption.";



// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;

if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}



function Validate_ContactForm()
{
    if (document.form.strTypeofRequest.selectedIndex == 0) {
        alert('You must choose your TYPE OF REQUEST to continue.');
		document.form.strTypeofRequest.focus();
		return(false);
    }
	if (document.form.strContactPerson.value.length == 0)
	{
		alert('You must enter A CONTACT PERSON to continue.');
		document.form.strContactPerson.focus();
		return(false);
	}
if (document.form.strEmailAddress.value.length == 0 || document.form.strEmailAddress.value.indexOf(".") == -1 || document.form.strEmailAddress.value.indexOf("@") == -1)
	{
		alert('You must enter YOUR E-MAIL ADDRESS containing "@" and "." to continue.');
		document.form.strEmailAddress.focus();
		return(false);
	}
    if (document.form.strTypeofMarketing.selectedIndex == 0) {
        alert('Please tell us HOW YOU FOUND US to continue.');
		document.form.strTypeofMarketing.focus();
		return(false);
    }
	if (document.form.strRequest.value.length == 0)
	{
		alert('You must enter A REQUEST to continue.');
		document.form.strRequest.focus();
		return(false);
	}
return (true);
} 
// End hiding -->









































