<!-- 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="++++++++        Mother's Day Telegram 2005 - Available Now        ";
//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, 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="          To apply for an account follow the Talk to Us link in the top right hand corner and then select Billing Enquiry.         "
//var myMainMessage="AVAILABLE NOW: three 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 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 -->
