﻿function CalculateBoxShadowRightMiddleHeight()
{
    // Sätt bredden på containerrutan
    var box = document.getElementById("BoxContainer");
    var height = box.offsetHeight - 62;
    
    // Sätt höjden på skuggan till höger
    var shadow = document.getElementById("BoxShadowRightMiddle");
    shadow.style.height = height + "px";
    
    // Olika höjder för IE6/övriga
    if (navigator.appVersion.indexOf("MSIE 6") != -1)
        height = height+18;
    else
        height = height+38;
    
    // Placera ut den nedre delen av skuggan till höger
    var shadow2 = document.getElementById("BoxShadowRightBottom");
    shadow2.style.top = height + "px";
}

function ClearOnClick(box,text)
{
    if (box.value == text)
        box.value = "";
}
