function copyInfo(theForm)
{
	//This is used on the ordershipment and orderBoxLunch pages
	//var theForm;
	//theForm =document.OrderShipMent;
    theForm.BtxtFirstName.value = theForm.RtxtFirstName.value;
     theForm.BtxtLastName.value = theForm.RtxtLastName.value;
      theForm.BtxtCompany.value = theForm.RtxtCompany.value;
       theForm.BtxtAddressLine1.value = theForm.RtxtAddressLine1.value;
        theForm.BtxtAddressLine2.value = theForm.RtxtAddressLine2.value;
         theForm.BtxtCity.value = theForm.RtxtCity.value;
          theForm.BtxtZip1.value = theForm.RtxtZip1.value;
          
			//theForm.BtxtCountry.value = theForm.RtxtCountry.value;
			  theForm.BtxtPhoneAreaCode.value = theForm.RtxtPhoneAreaCode.value;
			   theForm.BtxtPhoneNumber1.value = theForm.RtxtPhoneNumber1.value;
				theForm.BtxtPhoneNumber2.value = theForm.RtxtPhoneNumber2.value;
				  theForm.BtxtPhoneExtension.value = theForm.RtxtPhoneExtension.value;
					theForm.BtxtState.selectedIndex = theForm.RtxtState.selectedIndex;
			 
}



 function cancel(theform){
	// This used on all the submit pages
    var storeId,stateAbb;
    storeId = theform.txtStoreId.value;
    stateAbb = theform.txtStateAbb.value;
   
			 if  (confirm("Are you sure you want to cancel this order. Press OK.")){
				 alert("Order cancelled.");
					
				theform["blnCancel"].value = "true"
					
				 //window.location.href="storeHome.asp?storeID=" + storeId + "&stateAbb=" + stateAbb;
				 theform.submit();
			   return true;
			    }
			else {
				alert("Please press the Order button on this page, \n or use the back button on your browser to make changes.");
				return true;
				
			 }
			 return false;
			}
			
			
	function thankYou(theForm){
	// This used on all the submit pages
	   theForm.cmdOrder.disabled = true; 
	  //alert("Thank you for your order, it will be processed shortly."); 
	return true;
	}
	
	
	
 function newWindow(theUrl){
 window.open (theUrl,'','width=700,height=400,location=yes,copyhistory=no,toolbar=yes,status=yes,scrollbars=yes,directories=yes,resizable=yes' );
 
 }
 