﻿onerror=handleErr
var method;


function handleErr(msg,url,l)
{
    txt="Line Number="+ l  + "$#$#Errormessage=" + msg + " $#Method Name=" + method +"$#$# URL:" + url;
    ClickHandler.LogError(txt);
    return true;
}


function setSideBox(controlid,show)
{
//    if(show)
//    {
//        if(controlid == 1)
//            document.getElementById("ulAktuellt").style.display="block";
//        if(controlid == 2)
//            document.getElementById("ulRelaterat").style.display="block";
//        if(controlid == 3)
//            document.getElementById("ulAddress").style.display="block";
//        if(controlid == 4)
//            document.getElementById("ulFickDu").style.display="block";
//        if(controlid == 5)
//            document.getElementById("ulChattaMed").style.display="block";
//    }
//    else
//    {
//        if(controlid == 1)
//            document.getElementById("ulAktuellt").style.display="none";
//        if(controlid == 2)
//            document.getElementById("ulRelaterat").style.display="none";
//        if(controlid == 3)
//            document.getElementById("ulAddress").style.display="none";
//        if(controlid == 4)
//            document.getElementById("ulFickDu").style.display="none";
//        if(controlid == 5)
//            document.getElementById("ulChattaMed").style.display="none";
//    }
    
    ClickHandler.InsertShowSideBox(parseInt(TemplateId),parseInt(controlid),show,setSideBox_callback);
}



function setSideBox_callback(res)
{
    if(res.valueOf == true)
        window.location.reload();
}

