<!-- Test of JavaScript --------------
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function Certify(URL) {
  popupWin = window.open(URL, 'Participant', 'location,scrollbars,width=450,height=300')
  window.top.name = 'opener';
}
function ShowStatus(mymess)
{window.status = mymess;
setTimeout("ClearStatus()",2000);
}
function ClearStatus()
{window.status = "";
}
function scrollit_r2l(seed)
{
		var m1 = "Now through April 30, 2002, buy one fish or shellfish print by ";  
        var m2 = "artist B. Guild Gillespie at our regular price and get a 9x12 ";  
        var m3 = "print of your choice absolutely free!";

        var messages=m1+m2+m3;
        var out = " ";
        var c = 1;

        if (seed > 100) {
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 100 && seed > 0) { 
                for (c=0; c < seed; c++) {
                        out+=" ";
                }
                out+=messages;
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                    window.status=out;
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 0) {
                if (-seed < messages.length) {
                        out+=messages.substring(-seed,messages.length);
                        seed--;
                        var cmd="scrollit_r2l(" + seed + ")";
                        window.status=out;
                        timerTwo=window.setTimeout(cmd,100);
                }
                else {
                        window.status=" ";
                        timerTwo=window.setTimeout("scrollit_r2l(100)",75);
                }
        }
}
// -- End of JavaScript code --------------->
