mesg = "Welcome to Crafts N Gifts";
isNS = (navigator.appName == "Netscape")
isIE = (navigator.appName == "Microsoft Internet Explorer")
text = (mesg)
if (isNS) {
document.write("<blink>" + text + "</blink>")}
else if (isIE) {
document.write("<MARQUEE BEHAVIOR=SCROLL DIRECTION=LEFT>" + text + "</MARQUEE>")}