 <!-- This script and many more are available online from -->
 <!-- The JavaScript Source!! http://javascriptsource.com -->
 
 <!-- Begin
 var Message="Due to the cost of International UPS, all international orders, including those to Canada, will be shipped via postal service.  All Canadian orders will be charged US $12.00 above the stated S/H charges: all other international orders will be charged international postage rates plus $4.00 for packaging and labor."

 var place=1;
 function scrollIn() {
 window.status=Message.substring(0, place);
 if (place >= Message.length) {
 place=1;
 window.setTimeout("scrollOut()",300); 
 } else {
 place++;
 window.setTimeout("scrollIn()",50); 
    } 
 }
 function scrollOut() {
 window.status=Message.substring(place, Message.length);
 if (place >= Message.length) {
 place=1;
 window.setTimeout("scrollIn()", 100);
 } else {
 place++;
 window.setTimeout("scrollOut()", 50);
    }
 }
 // End -->