function openNormal(location_string, width_int, height_int, top_int, left_int)
{
    window.open(location_string,'popup','width=' + width_int + ',height=' + height_int + ',top=' + top_int + ',left=' + left_int + ',toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,status=yes,directories=yes,location=yes');
}

function openPrintWindow(location_string, width_int, height_int)
{
    window.open(location_string,'Print_Window','width=' + width_int + ',height=' + height_int + ',toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');
}

function openMinimum(location_string, width_int, height_int)
{
    window.open(location_string,'popup','width=' + width_int + ',height=' + height_int + ',toolbar=no,scrollbars=yes,resizable=yes,menubar=no,status=no,directories=no,location=no');
}

function getPopUp(location_string, width_int, height_int, top_int, left_int)
{
    window.open(location_string,'popup','width=' + width_int + ',height=' + height_int + ',top=' + top_int + ',left=' + left_int + ',toolbar=no,scrollbars=auto,resizable=no,menubar=no,status=no,directories=no,location=no');
}

function getCenterPopup(location_string, width_int, height_int)
{
    var top_int = (screen.height / 2) - (height_int / 2);
    var left_int = (screen.width / 2) - (width_int / 2);

    getPopUp(location_string, width_int, height_int, top_int, left_int);
}

function over(naam, loc)
{
    if (document.images)
    {
        document.images[naam].src = loc;
    }
}

function out(naam, loc)
{
    if (document.images)
    {
        document.images[naam].src = loc;
    }
}

function overRef(naam, loc)
{
    if (document.images)
    {
        document.images[naam].src = loc;
        document.images[naam].style.border = '1px solid #003466';
    }
}

function outRef(naam, loc)
{
    if (document.images)
    {
        document.images[naam].src = loc;
        document.images[naam].style.border = '0px';
    }
}

function addBookmark(url)
{
    if (window.sidebar)
    {
        window.sidebar.addPanel('ThyssenKrupp Access', url,"");
    }
    else if( document.all )
    {
        window.external.AddFavorite( url, 'ThyssenKrupp Access');
    }
    else if( window.opera && window.print )
    {
        return true;
    }
}

function bodyLoad()
{

}