<!-- Hide this code from non-JavaScript browsers

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)
	{
		alert('You must enter YOUR E-MAIL ADDRESS to continue.');
		document.form.strEmail.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 displayPopup(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=0,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=50,top=50";
popupHandle = open(url, "Upload_Image", properties);

}
function displayPopup2(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=0,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=50,top=50";
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 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 requiredCH()
{
	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.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);
	}
		if (document.SaleForm.bzip.value.length == 0)
	{
		alert('You must enter your CREDIT CARD ZIP CODE to continue.');
		document.SaleForm.bzip.focus();
		return(false);
	}

	return (true);
} 

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){

	if(pos=="random"){
		LeftPosition=(screen.width)?Math.floor(Math.random()*((screen.width-w)-75)):100;
		TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){
		LeftPosition=0;
		TopPosition=20}

	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
	win=window.open(mypage,myname,settings);
	if(win.focus){win.focus();}}

	
	
	function Validate_Form()
{
	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.strPhoneNumber.value.length == 0)
	{
		alert('You must enter A PHONE NUMBER to continue.');
		document.form.strPhoneNumber.focus();
		return(false);
	}
	if (document.form.strEmailAddress.value.length == 0)
	{
		alert('You must enter AN E-MAIL ADDRESS to continue.');
		document.form.strEmailAddress.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);
} 
	

var mikExp = /[$\\@\\\#%\^\&\'\"\,\:\;\?\*\(\)\[\]\+\.\_\{\}\`\~\=\|]/;
function dodacheck(val) {
var strPass = val.value;
var strLength = strPass.length;
var lchar = val.value.charAt((strLength) - 1);
if(lchar.search(mikExp) != -1) {
var tst = val.value.substring(0, (strLength) - 1);
val.value = tst;
   }
}
function doanothercheck(form) {
if(form.value.length < 1) {
alert("Please enter something.");
return false;
}
if(form.value.search(mikExp) == -1) {
alert("Correct Input");
return false;
}
else {
alert("Sorry, but the following characters\n\r\n\r@ $ % ^ & * # ( ) [ ] \\ { + } ` ~ =  | \n\r\n\rare not allowed!\n");
form.select();
form.focus();
return false;
}
alert("Correct Input");
return false;
}


	function Validate_Form4()
{
	if (document.SaleForm.cardnumber.value.length == 0)
	{
		alert('You must enter A VALID CREDIT CARD NUMBER to continue.');
		document.SaleForm.cardnumber.focus();
		return(false);
	}
	if (document.SaleForm.expmonth.value.length == 0)
	{
		alert('You must enter A VALID EXPIRATION MONTH eg: XX - 03 to continue.');
		document.SaleForm.expmonth.focus();
		return(false);
	}
	if (document.SaleForm.expyear.value.length == 0)
	{
		alert('You must enter A VALID EXPIRATION YEAR eg: XXXX - 2010 to continue.');
		document.SaleForm.expyear.focus();
		return(false);
	}
	if (document.SaleForm.cvv2.value.length == 0)
	{
		alert('You must enter YOUR CVV2 (3-DIGITS FROM BACK OF YOUR CARD) to continue.');
		document.SaleForm.cvv2.focus();
		return(false);
	}
	return (true);
} 



// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 8000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 8;

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/fader/1.jpg';
Picture[2]  = 'images/fader/2.jpg';
Picture[3]  = 'images/fader/3.jpg';
Picture[4]  = 'images/fader/4.jpg';
Picture[5]  = 'images/fader/5.jpg';
Picture[6]  = 'images/fader/6.jpg';
Picture[7]  = 'images/fader/7.jpg';
Picture[8]  = 'images/fader/8.jpg';
Picture[9]  = 'images/fader/9.jpg';
Picture[10]  = 'images/fader/10.jpg';
Picture[11]  = 'images/fader/11.jpg';
Picture[12]  = 'images/fader/12.jpg';
Picture[13]  = 'images/fader/13.jpg';
Picture[14]  = 'images/fader/14.jpg';
Picture[15]  = 'images/fader/15.jpg';
Picture[16]  = 'images/fader/16.jpg';
Picture[17]  = 'images/fader/17.jpg';
Picture[18]  = 'images/fader/18.jpg';
Picture[19]  = 'images/fader/19.jpg';
Picture[20]  = 'images/fader/20.jpg';
Picture[21]  = 'images/fader/21.jpg';
Picture[22]  = 'images/fader/22.jpg';
Picture[23]  = 'images/fader/23.jpg';
Picture[24]  = 'images/fader/24.jpg';
Picture[25]  = 'images/fader/25.jpg';
Picture[26]  = 'images/fader/26.jpg';
Picture[27]  = 'images/fader/27.jpg';
Picture[28]  = 'images/fader/28.jpg';
Picture[29]  = 'images/fader/29.jpg';



// 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.";
Caption[6]  = "This is the first caption.";
Caption[7]  = "This is the first caption.";
Caption[8]  = "This is the first caption.";
Caption[9]  = "This is the first caption.";
Caption[10]  = "This is the first caption.";
Caption[11]  = "This is the first caption.";
Caption[12]  = "This is the first caption.";
Caption[13]  = "This is the first caption.";
Caption[14]  = "This is the first caption.";
Caption[15]  = "This is the first caption.";
Caption[16]  = "This is the first caption.";
Caption[17]  = "This is the first caption.";
Caption[18]  = "This is the first caption.";
Caption[19]  = "This is the first caption.";
Caption[20]  = "This is the first caption.";
Caption[21]  = "This is the first caption.";
Caption[22]  = "This is the first caption.";
Caption[23]  = "This is the first caption.";
Caption[24]  = "This is the first caption.";
Caption[25]  = "This is the first caption.";
Caption[26]  = "This is the first caption.";
Caption[27]  = "This is the first caption.";
Caption[28]  = "This is the first caption.";
Caption[29]  = "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);
}
// End hiding -->














































