<!-- Web Site: JS Made Easy.com -->
<!-- URL: http://www.jsmadeeasy.com/javascripts/Status%20Bar/Write%20And%20Slide/ -->


var Message="Email: cyachts@otenet.gr - 2, PL. CHATZIKONSTANTI STR. - 185 36 PIRAEUS - G R E E C E - TEL:+30-210-4512010 (3 lines) - FAX: +30-210-4518820";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",100); 
} else {
place++;
window.setTimeout("scrollIn()",100); 
   } 
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 100);
   }
}
scrollIn()

