//=====================================================================||
//                            Variables                                ||
//                       ------------------                            ||
//---------------------------------------------------------------------||


strSorry  = "I'm Sorry, your basket is full, please proceed to checkout.";
strAdded  = " added to your shopping basket.";
strRemove = "Click 'Ok' to remove this product from your shopping basket.";
strILabel = "Product Code";
strDLabel = "Description";
strQLabel = "Quantity";
strPLabel = "Price";
strSLabel = "Delivery";
strRLabel = "Remove From Basket";
strRButton= "Remove";
strSUB    = "SUBTOTAL";
strSHIP   = "DELIVERY";
strTAX    = "VAT";
strTOT    = "TOTAL";
strErrQty = "Invalid Quantity.";
strNewQty = 'Please enter new quantity:';

Language = 'en';
bLanguageDefined = true;




//---------------------------------------------------------------------||







//---------------------------------------------------------------------||






function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
if (username=="dave") { window.location="http://www.parcelsolutions.co.uk/ParcelSolutionsIT/Parceltest_collection.html"; done=1; }
if (done==0) { alert("i'm sorry but due to problems at FedEx we cannot process any orders. We will email you when the problem is resolved"); }
}

//---------------------------------------------------------------------||



