function popUp(URL) {
    window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=600,height=600');
}
function chLang() {
    if (getCookie("Lappset_langChoice")!="") {
        setCookie2("Lappset_langChoice","",-1);
    }
    location.href="http://www.lappset.com";
}
function setCookie2(c_name,value,days) {
    if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	} else {
	    var expires = "";
	}
	document.cookie = c_name+"="+value+expires+"; path=/";
}
function getCookie(c_name) {
    if (document.cookie.length>0) {
        c_start=document.cookie.indexOf(c_name + "=");
        if (c_start!=-1) {
            c_start=c_start + c_name.length+1;
            c_end=document.cookie.indexOf(";",c_start);
            if (c_end==-1) {
                c_end=document.cookie.length;
            }
            return unescape(document.cookie.substring(c_start,c_end));
        }
    }
    return "";
}

if (getCookie("Lappset_langChoice")!="") {
    location.href=getCookie("Lappset_langChoice");
}