<!--
/*
 Please leave this notice.
 DHTML Scrolling Text version 1.0 copyright Essam Gamal 2003 
 Home Page http://migoicons.tripod.com
 Email migoicons@hotmail.com
 Date : Friday, May 30, 2003
*/ 
var ScrollingSpeed  = 0.5 // scrolling speed in seconds
var Xposition = 300 // specify the X coordinate of the scrolling text.
var Yposition  = 0  // specify the Y coordinate of the scrolling text.
var ns6 = (document.getElementById&&!document.all)? 1:0
var ie = (document.all)? 1:0 
var ns = (navigator.appName.toLowerCase()=="netscape"&&!document.getElementById)? 1:0

function scrollLayer() {
var lryRef = (ns)? document.ScrollingText:(ie)? ScrollingText.style :document.getElementById('ScrollingText').style
var ScrollTopValue = (ns||ns6)? window.pageYOffset : (ie)? document.body.scrollTop : 0
var ScrollLeftValue = (ns||ns6)? window.pageXOffset : (ie)? document.body.scrollLeft : 0
lryRef.top = ScrollTopValue + Yposition 
lryRef.left = ScrollLeftValue + Xposition 
setTimeout('scrollLayer()', ScrollingSpeed*1000)
}

//-->