function showtime(dte,dtename,dv) {
today = new Date();
tz=today.getTimezoneOffset();
BigDay = new Date(dte)
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - today.getTime());
timeLeft=timeLeft-(tz*1000*60);
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
var clr='';
if (daysLeft<0) {
document.getElementById(dv).innerHTML="Orders are no longer being taken for this year.";
}
else {
if (daysLeft<6) clr='style="color:red;"';
document.getElementById(dv).innerHTML="There are only<BR> <H4 "+clr+">" + daysLeft + " days " + hrsLeft +" hours and " + minsLeft + " minutes left </H4> "+dtename;
setTimeout("showtime('"+dte+"','"+dtename+"','"+dv+"')",1000);
}
}
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "You love simply because you cannot help it.<br><br> Anderson ";
Quotation[1] = "I don't want to live - I want to love first, And live incidentally";
Quotation[2] = "I've learned that you cannot make someone love you. All you can do is be someone who can be loved. The rest is up to them";
Quotation[3] = "It's not that I can't live without you, It's that I don't even want to try.";
Quotation[4] = "Love is that first feeling you feel before all the bad stuff gets in the way";
Quotation[5] = "Love is when a girl puts on perfume and a boy puts on shaving cologne and they go out and smell each other";
Quotation[6] = "Always listen to your heart because even though it's on your left side, it's always right";
Quotation[7] = "The best kind of kiss is ..<br><br>the kind when you have to stop because you can't help but smile. ";
Quotation[8] = "Love is composed of a single soul inhabiting two bodies...<br><br>Aristotle";
Quotation[9] = "Don't find love, let love find you.<br> That's why it's called falling in love, because you don't force yourself to fall, you just fall. ";
Quotation[10]="It takes a minute to have a crush on someone, an hour to like someone, and an day to love someone...<br>but it takes a lifetime to forget someone. ";
Quotation[11]="I believe that to truly Love, is the ultimate expression of the will to live. A heart that truly loves is forever young. ";
Quotation[12]="Do you love me because I am beautiful or am I beautiful because I am loved? ";
Quotation[13]="It takes a second to say I love you but a lifetime to show it.";
Quotation[14]="When you have nothing left but love, then for the first time you become aware that love is enough.";
Quotation[15]="He who is in love is wise and is becoming wiser, sees newly everytime he looks at the object beloved, drawing from it with his eyes and his mind those virtues which it possesses.<br><br> Ralph Waldo Emerson, 1841";
Quotation[16]="Love is a promise, love is a souvenir, once given never forgotten, never let it disappear.<br><br>John Lennon";
Quotation[17]="Where there is love there is life.<br><br>Mahatma Gandhi";
Quotation[18]="Immature love says: 'I love you because I need you.'<br>Mature love says: 'I need you because I love you.'<br><br>Erich Fromm (1900-1980)";
Quotation[19]="Neither a lofty degree of intelligence nor imagination nor both together go to the making of genius. Love, love, love, that is the soul of genius.<br><br>Wolfgang Amadeus Mozart";
Quotation[20]="To love for the sake of being loved is human, but to love for the sake of loving is Angelic.<br><br>Alphonse De Lamartine (1790-1869)";
Quotation[21]="Love looks not with the eyes, but with the mind, and therefore is winged Cupid painted blind.<br><br>William Shakespeare";
Quotation[22]="The course of true love never did run smooth.<br><br>William Shakespeare";
Quotation[23]="You can give without loving, but you can never love without giving.<br><br>Robert Louis Stevenson";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuote() {document.getElementById('LoveQuote').innerHTML=Quotation[whichQuotation];}
function updateppbutton() {
if (document.getElementById('paycurrency').selectedIndex==2) {
document.getElementById('currency_code').value='GBP';
document.getElementById('amount').value='4.99';
}
else {
document.getElementById('currency_code').value='USD';
document.getElementById('amount').value='7.50';
}

}
