<!--
   var winLength = 120;    //start scrolling after 120 spaces
   var speed = 150;         //milliseconds between updates
   var msg="Did you know that all items are shipped free and we offer a 1 year limited garauntee on all items ?"              
   var timeoutID;          //holds timerID for clearTimeout method

var name  = "sales2007"; 
var atsign = "@"; 
var virtual_domain = "watchmarket"; 
var dotcom = ".co.za"; 
var adm = "admin";

   function scroll(count){
      var out = " ";
      var cmd = "scroll(";
      if (count <= winLength && 0 < count){  //pad the front of the message
         var c = 0;                          //with count spaces
         for (c = 0; c < count; c++){
            out += " ";
         }
         out += msg;
      }
      else if (count<=0){                   //no more leading blanks
         if (-count < msg.length)
            out += msg.substring(-count,msg.length);
         else                                 //reset count
            count = winLength + 1;
      }
      window.status = out;                    //show to status bar
      count --;                               //decrement count
      cmd += count + ")";                     //construct call to scroll function
      timeoutID=window.setTimeout(cmd,speed); //recursive call
   }
   function doIt(){
      //msg=StatusMess;
	
      window.clearTimeout(timeoutID);
      window.setTimeout("scroll(winLength)", speed);
   }
   function clearIt(){
      document.thisForm.txtStatus.value="";
      window.clearTimeout(timeoutID);
      window.status="";
   }
   function MyMail(mysubject,mycaption){

//      document.write("<a href=" + "mailto:", name + atsign + virtual_domain + dotcom + "?subject=" + mysubject, ">" + mycaption + "</a>");  


      document.write("<a href=\"mailto:", name + atsign + virtual_domain + dotcom + "?subject=" +  mysubject  , "\">" + mycaption + "</a>");  


   }
 
   // Opening new window
   function doWindow(filename){
	winB = window.open("","","")
	winB.document.location.href=filename;
   }
	

-->





