/* homecookie.js 

    used to set one tome a session cookie for home page flash

*/

function setCookie() {
    document.cookie = "hasViewed=true";
}

function getCookie() {
    myCookie = new String(document.cookie);
    index = myCookie.indexOf("hasViewed=true");
    if (index > -1) {
        hasViewed = true;
    } else {
        hasViewed = false;
        setCookie();
    }
}

function writeHomeArtist() {
    c = "";
    if (hasViewed) {
        c += '<map name="dest1"><area coords="20,10,149,103" href="/" alt="Scullers Jazz Club" onClick="if (navigator.appName == \'Microsoft Internet Explorer\') this.blur();"></map><img src="images/main-page-artist.gif" alt="" width="760" height="178" border="0" usemap="#dest1">';
    } else {
        c += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="760" height="178" id="gallery" align="middle">';
        c += '<param name="allowScriptAccess" value="sameDomain" />';
        c += '<param name="movie" value="./flash/main.swf" />';
        c += '<param name="quality" value="high" />';
        c += '<param name="bgcolor" value="#000000" />';
        c += '<embed src="./flash/main.swf" quality="high" bgcolor="#000000" width="760" height="178" name="gallery" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
        c += '</object>';
    }
    document.write(c);
}


getCookie();
