<!-- Hide this code from non-JavaScript browsers


var Roll=new Array();

Roll["home"] = new RollOver("images/nav_on_02.gif");
Roll["products"] = new RollOver("images/nav_on_03.gif");
Roll["aboutus"] = new RollOver("images/nav_on_04.gif");
Roll["policies"] = new RollOver("images/nav_on_05.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;
        }
}

function displayPopup(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=0,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=0,top=0";
popupHandle = open(url, "Upload_Image", properties);

}
function displayPopup3(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=1,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=50,top=50";
popupHandle = open(url, "Upload_Image", properties);

}
function Validate_Destination()
{
	if (document.form.strFirst.value.length == 0)
	{
		alert('You must enter YOUR FIRST NAME to continue.');
		document.form.strFirst.focus();
		return(false);
	}
	if (document.form.strLast.value.length == 0)
	{
		alert('You must enter YOUR LAST NAME to continue.');
		document.form.strLast.focus();
		return(false);
	}
	if (document.form.strEmail.value.length == 0 || document.form.strEmail.value.indexOf(".") == -1 || document.form.strEmail.value.indexOf("@") == -1)
	{
		alert('You must enter A VALID E-MAIL ADDRESS containing "@" and "." to continue.');
		document.form.strEmail.focus();
		return(false);
	}
	if (document.form.password.value.length == 0)
	{
		alert('You must enter A PASSWORD to continue.');
		document.form.password.focus();
		return(false);
	}
	
    if (document.form.strAddress1.value.length == 0)
	{
		alert('You must enter YOUR ADDRESS to continue.');
		document.form.strAddress1.focus();
		return(false);
	}
	if (document.form.strCity.value.length == 0)
	{
		alert('You must enter YOUR CITY to continue.');
		document.form.strCity.focus();
		return(false);
	}
	if (document.form.strPostalCode.value.length == 0)
	{
		alert('You must enter YOUR ZIP CODE to continue.');
		document.form.strPostalCode.focus();
		return(false);
	}
	if (document.form.strPhone.value.length == 0)
	{
		alert('You must enter YOUR PHONE NUMBER to continue.');
		document.form.strPhone.focus();
		return(false);
	}
if (document.form.strShipFirst.value.length == 0)
	{
		alert('You must enter YOUR SHIPPING FIRST NAME to continue.');
		document.form.strShipFirst.focus();
		return(false);
	}
if (document.form.strShipLast.value.length == 0)
	{
		alert('You must enter YOUR SHIPPING LAST NAME to continue.');
		document.form.strShipLast.focus();
		return(false);
	}
if (document.form.strShipAddress.value.length == 0)
	{
		alert('You must enter YOUR SHIPPING ADDRESS to continue.');
		document.form.strShipAddress.focus();
		return(false);
	}
if (document.form.strShipCity.value.length == 0)
	{
		alert('You must enter YOUR SHIPPING CITY to continue.');
		document.form.strShipCity.focus();
		return(false);
	}
if (document.form.strShipPostalCode.value.length == 0)
	{
		alert('You must enter YOUR SHIPPING ZIP to continue.');
		document.form.strShipPostalCode.focus();
		return(false);
	}


	return (true);
} 


var strShipFirst = "";
var strShipLast = "";
var strShipAddress = "";
var strShipCity = "";
var strShipPostalCode = "";
var strShipState = "";
var strShipStateIndex = 0;
var strShipCountry = "";
var strShipCountryIndex = 0;

function InitSaveVariables(form) {
strShipFirst = form.strShipFirst.value;
strShipLast = form.strShipLast.value;
strShipAddress = form.strShipAddress.value;
strShipCity = form.strShipCity.value;
strShipPostalCode = form.strShipPostalCode.value;
strShipStateIndex = form.strShipState.selectedIndex;
strShipState = form.strShipState[strShipStateIndex].value;
strShipCountry = form.strShipCountry[strShipCountryIndex].value;
}

function ShipToBillPerson(form) {
if (form.copy.checked) {
InitSaveVariables(form);
form.strShipFirst.value = form.strFirst.value;
form.strShipLast.value = form.strLast.value;
form.strShipAddress.value = form.strAddress1.value;
form.strShipCity.value = form.strCity.value;
form.strShipPostalCode.value = form.strPostalCode.value;
form.strShipState.selectedIndex = form.strState.selectedIndex;
form.strShipCountry.selectedIndex = form.strCountry.selectedIndex;
}
else {
form.strShipFirst.value = strShipFirst;
form.strShipLast.value = strShipLast;
form.strShipAddress.value = strShipAddress;
form.strShipCity.value = strShipCity;
form.strShipPostalCode.value = strShipPostalCode;
form.strShipState.selectedIndex = strShipStateIndex;
form.strShipCountry.selectedIndex = strShipCountryIndex;
   }
}
function checkCapsLock( e ) {
	var myKeyCode=0;
	var myShiftKey=false;
	var myMsg='Caps Lock is On.\n\nPlease take off Caps Lock to proceed';

	// Internet Explorer 4+
	if ( document.all ) {
		myKeyCode=e.keyCode;
		myShiftKey=e.shiftKey;

	// Netscape 4
	} else if ( document.layers ) {
		myKeyCode=e.which;
		myShiftKey=( myKeyCode == 16 ) ? true : false;

	// Netscape 6
	} else if ( document.getElementById ) {
		myKeyCode=e.which;
		myShiftKey=( myKeyCode == 16 ) ? true : false;

	}

	// Upper case letters are seen without depressing the Shift key, therefore Caps Lock is on
	if ( ( myKeyCode >= 65 && myKeyCode <= 90 ) && !myShiftKey ) {
		alert( myMsg );

	// Lower case letters are seen while depressing the Shift key, therefore Caps Lock is on
	} else if ( ( myKeyCode >= 97 && myKeyCode <= 122 ) && myShiftKey ) {
		alert( myMsg );

	}
}

function Validate_ContactForm()
{
	if (document.contactform.firstlastName.value.length == 0)
	{
		alert('You must enter your first and last name to continue.');
		document.contactform.firstlastName.style.background = "#FF0000";
		document.contactform.firstlastName.focus();
		return(false);
	}
	if (document.contactform.phoneNumber.value.length == 0)
	{
		alert('You must enter your phone number to continue.');
		document.contactform.phoneNumber.style.background = "#FF0000";
		document.contactform.phoneNumber.focus();
		return(false);
	}
	if (document.contactform.emailAddress.value.length == 0 || document.contactform.emailAddress.value.indexOf(".") == -1 || document.contactform.emailAddress.value.indexOf("@") == -1)
	{
		alert('You must enter your e-mail address containing "@" and "." to continue.');
		document.contactform.emailAddress.style.background = "#FF0000";
		document.contactform.emailAddress.focus();
		return(false);
	}
	if (document.contactform.foundushow.selectedIndex == 0) {
        alert('You must tell us how you found our website to continue.');
		document.contactform.foundushow.style.background = "#FF0000";
		document.contactform.foundushow.focus();
		return(false);
    }
	if (document.contactform.requesttype.selectedIndex == 0) {
        alert('You must tell why you are contacting us today to continue.');
		document.contactform.requesttype.style.background = "#FF0000";
		document.contactform.requesttype.focus();
		return(false);
    }
	if (document.contactform.comments.value.length == 0)
	{
		alert('You must enter a response in the comments/requests/others area to continue.');
		document.contactform.comments.style.background = "#FF0000";
		document.contactform.comments.focus();
		return(false);
	}

	return (true);
} 


function checkouts()
{
	if (document.SaleForm.strNameOnCc.value.length == 0)
	{
		alert('You must enter your NAME ON CREDIT CARD to continue.');
		document.SaleForm.strNameOnCc.focus();
		return(false);
	}
	if (document.SaleForm.bzip.value.length == 0)
	{
		alert('You must enter your CREDIT CARD ZIP CODE to continue.');
		document.SaleForm.bzip.focus();
		return(false);
	}
	if (document.SaleForm.cardnumber.value.length == 0)
	{
		alert('You must enter your CREDIT CARD NUMBER to continue.');
		document.SaleForm.cardnumber.focus();
		return(false);
	}
	if (document.SaleForm.expmonth.value.length == 0)
	{
		alert('You must enter your CREDIT CARD EXP MONTH to continue.');
		document.SaleForm.expmonth.focus();
		return(false);
	}
	if (document.SaleForm.expyear.value.length == 0)
	{
		alert('You must enter your CREDIT CARD EXP YEAR to continue.');
		document.SaleForm.expyear.focus();
		return(false);
	}
    if (document.SaleForm.cvv2.value.length == 0)
	{
		alert('You must enter your CREDIT CARD CVV2 CODE from the back to continue.');
		document.SaleForm.cvv2.focus();
		return(false);
	}
	

	return (true);
} 
// End hiding -->









































