<!--
      var caption = new Array(1);
      caption[00] = 'Allure et Beauté Salon & Day Spa';

      var linkOff = new ImageArray('images/allure_logo_norm.gif');
      var linkOn = new ImageArray('images/allure_logo_over.gif');

      function ImageArray() {
        this.length = ImageArray.arguments.length
        for (var i = 0; i < this.length; i++) {
          this[i] = new Image()
          this[i].src = ImageArray.arguments[i]}
      }

      function onOut(n) {
        eval("document.images.link" + (n + 1) + ".src = linkOff[" + n + "].src");
        window.status = '';
      }

      function onOver(n) {
        eval("document.images.link" + (n + 1) + ".src = linkOn[" + n + "].src");
        window.status = caption[n];
      }
      function setBillingCert() {
	if(document.giftcert.copy.checked == true){
		document.giftcert.sname.value = document.giftcert.name.value;
		document.giftcert.semail.value = document.giftcert.email.value;
		document.giftcert.saddress.value = document.giftcert.address.value;
		document.giftcert.sunit.value = document.giftcert.unit.value;
		document.giftcert.scity.value = document.giftcert.city.value;
		document.giftcert.sstate.value = document.giftcert.state.value;
		document.giftcert.szip.value = document.giftcert.zip.value;
		document.giftcert.sphone.value = document.giftcert.phone.value;
	}else{
		document.giftcert.sname.value = '';
		document.giftcert.semail.value = '';
		document.giftcert.saddress.value = '';
		document.giftcert.sunit.value = '';
		document.giftcert.scity.value = '';
		document.giftcert.sstate.value = '';
		document.giftcert.szip.value = '';
		document.giftcert.sphone.value = '';
	}
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
      function setBilling() {
	if(document.order.copy.checked == true){
		document.order.billingAddress.value = document.order.address.value;
		document.order.billingCity.value = document.order.city.value;
		document.order.billingState.value = document.order.state.value;
		document.order.billingZip.value = document.order.zip.value;
		document.order.phone2.value = document.order.phone.value;
	}else{
		document.order.billingAddress.value = '';
		document.order.billingCity.value = '';
		document.order.billingState.value = '';
		document.order.billingZip.value = '';
		document.order.phone2.value = '';
	}
}
//-->