/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
if ((navigator.userAgent.indexOf("Firefox") != -1) || (navigator.userAgent.indexOf("MSIE") != -1))
{
    $('#btnFile').css('visibility', 'visible').hover
    (
        function()
        {
            $('#btnUploadInternal').addClass('specialButtonHover');
        },

        function()
        {
            $('#btnUploadInternal').removeClass('specialButtonHover');
        }
    );
}

function openFileBrowser()
{
    $('#btnFile').click();
}

function fileBrowserChanged()
{
    if($('#btnFile').val() != "")
    {
        $('#uploadFileForm').submit();
    }
}

function showColor(val) {
document.colorform.hexval.value = val;
}


