var surveyURL    = "http://www.mso.de/monitor/index.php?cu=14&id=37";
// Achtung der Monat wird ab 0 gezählt, d.h. April ist z.B. 3
// Das Ablaufdatum muss auf den Tag nach dem eigentlich Ablauf gesetzt werden
var surveyEnd    = new Date(2006, 11, 16);   // Ablaufdatum
var daysToExpire = 7;   // Gültigkeitsdauer des Cookies

var mday         = 24*60*60*1000;
var mhour        =    60*60*1000;
var mminute      =       60*1000;
var msecond      =          1000;

function CheckForPoll(lang) {
    var now = new Date();
    if((now.getTime() < surveyEnd.getTime()) && (lang == "de")) {
        if(document.cookie.indexOf("Murrplastik=Poll") == -1) {
            wnd = window.open("Content/Html/" + lang + "/poll.htm", "surveyquestion", "dependent=yes,width=500,height=250,location=no,menubar=no,resizeable=yes,scrollbars=yes,status=no,toolbar=no");
            wnd.focus();
        }
    }
}

function SetCookie() {
    var now = new Date();
    var expires = new Date();
    expires.setTime(now.getTime() + daysToExpire*mday - now.getHours()*mhour - now.getMinutes()*mminute - now.getSeconds()*msecond - now.getMilliseconds());
    document.cookie = "Murrplastik=Poll; path=/; expires=" + expires.toUTCString();
}

function OpenPollWindow() {
    document.cookie = "Murrplastik=Poll; path=/; expires=" + surveyEnd.toUTCString();
    wnd = window.open(surveyURL, "survey", "dependent=no,location=yes,menubar=yes,resizeable=yes,scrollbars=yes,status=yes,toolbar=yes");
    wnd.focus();
    self.close();
}