var scrollCounter = 0;
var scrollText    = "MIGGOM.COM - World Exporters Directory - Directorio mundial de empresas exportadoras";
var scrollDelay   = 200;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;
function Scroller()
{window.status = scrollText.substring(scrollCounter++, 
scrollText.length);
if (scrollCounter == scrollText.length) 
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);}
Scroller();

function openWindow(winname,str,name){winname = window.open(str,name,'scrollbars=yes,width=750,height=500')}
