<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- (c) http://www.wyka-warzecha.com -->

<!-- Begin
// THESE VARIABLES CAN BE CHANGED //
//var myMainMessage="++++++++        Mothers Day Telegram 2009 - Available Now        ";
//var myMainMessage="          Delight your mother on Mother’s Day with a Rose Petal Telegram          ";
//var myMainMessage="Coming Soon - An exciting new range of Telegrams                    New for 2003 - Christening Invitations by Telegram are available to order now!                   ";

//old rem by martijn
// First line is standard text.
//var myMainMessage="++++++++        STOP PRESS.....The biggest thing to happen to Telegrams since 1845.....STOP.....Personalise like never before.....STOP.....New Telegram Designs Available Now!.....STOP          ";
//var myMainMessage="The TelegramsOnline team wishes you HAPPY EASTER!!!   Please pay attention to the restricted delivery for all messages addressed to the UK, during the Easter holidays, thank you!                      "
//var myMainMessage="Santa has started preparing his telegrams for your children.....        Please contact him now to give him your child's details......        They'll love it!!......        And it's not only for children!.......                       "
//var myMainMessage="                                        ATTENTION OPERATORS: from now on you may accept orders for our Mother's Day Telegrams. See under 'Other Occasions'.                  "
//var myMainMessage="          ATTENTION OPERATORS: the following cards, if entered now, will be posted on the day before valentine's day: lovestory boy, lovestory girl, love and kisses, tree carving. Guaranteed delivery is not available.            "
var myMainMessage="AVAILABLE NOW: four exciting designs for Valentine LoveGrams...      Order now for delivery for Valentine's Day...      Go to 'other occasions', 'Valentine's Day'                     "
//var myMainMessage="++++++++        Send a Royal Wedding Telegram for just £ 3.50!         ++++++++        Click on 'Weddings' in the menu above and then on 'All telegrams'          "
//var myMainMessage=".... NOW available .... Example texts for many occasions .... No need for inspiration .... We will help you! .... Choose the text you need during the order process or view all text examples via the link under 'Messages' ...." 
//var myMainMessage="    Congratulate the Royal couple with a Royal Wedding Telegram.    "
var now    = new Date()
var today  = new Date(now.getYear(),now.getMonth(),now.getDate(),now.getHours(),now.getMinutes())
var check1 = new Date('December 21, 2004 15:00')
var check2 = new Date('December 27, 2004 00:00')

//if (today>check2) {
//	var myMainMessage= "The TelegramsOnline team wishes you a happy New Year!!!                     "
//} else {
//	if (today>check1) {
//		var myMainMessage= "The TelegramsOnline team wishes you a Merry Christmas and a happy New Year!!!                     "
//	} else {
//		var myMainMessage= "Santa has started preparing his telegrams for your children.....        Please contact him now to give him your child's details......        They'll love it!!......        And it's not only for children!.......                     "
//	}
//}

var speed=156;
// Must be equal to the number of characters in myMainMessage
var scrollingRegion=172;

// END CHANGEABLE VARIABLES //
var startPosition=0;

mainTextScroller();

function mainTextScroller() {
        var mainMessage=myMainMessage;
        var tempLoc=(scrollingRegion*3/mainMessage.length)+1;
        if (tempLoc<1) {tempLoc=1}
        var counter;
        for(counter=0;counter<=tempLoc;counter++)
           mainMessage+=mainMessage;
document.mainForm.mainTextScroller.value=mainMessage.substring(startPosition,startPosition+scrollingRegion);
        startPosition++;
        if(startPosition>scrollingRegion) startPosition=0;
        setTimeout("mainTextScroller()",speed); }
//  End -->
