﻿//=====================================================================================================
//  Common client side script.
//=====================================================================================================
function SetTabLocation(ctlID)
{
    try	
    {	
        if(document.getElementById(ctlID).type.substring(0,6) != "select")   // Ignore focus for dropdown lists.
        {
            document.getElementById(ctlID).focus();
            if(document.getElementById(ctlID).type == "text") document.getElementById(ctlID).select();
        }
    }								
    catch(e) {}					
}

function GetControlIdPrefix(ctlTagID)
{
    if(ctlTagID != null) return 'ctl00_MainContent_' + ctlTagID + '_';
    return 'ctl00_MainContent_';
}
        
function IsEmpty(str)
{
    if(str.replace(/\s/g,'').length == 0) return true;      // Empty string after removing all whitespaces.
    return false;
}
