function OpenWindow(target){
    window.open(target, "_Child");
}

function OpenPostWindow(target){
    window.open(target, "_Child", "resizable=yes,width=500,height=700");
}

function OpenSelf(target){
    top.window.location = target;
}

function getCookie(sName){
    var cookie = "" + document.cookie;
    var start = cookie.indexOf(sName);
    if (cookie == "" || start == -1) 
        return "";
    var end = cookie.indexOf(';', start);
    if (end == -1) 
        end = cookie.length;
    return unescape(cookie.substring(start + sName.length + 1, end));
}

function setCookie(sName, value){
    document.cookie = sName + "=" + escape(value) + ";path=/;";
}

function setCookieForever(sName, value){
    document.cookie = sName + "=" + escape(value) + ";path=/;expires=Fri, 1 Jan 2020 00:00:00 GMT;";
}