﻿/* TELL A MATE GLOBAL USER CONTROL */

function tellAMate(aliasPath, hdnImgID)
{
    var imgGuid = document.getElementById(hdnImgID);
    window.open(aliasPath + '.aspx?Imglink=' + imgGuid.value,'','width=400px,height=400px,scrollbars=1,menubar=0,location=0,resizable=0');
}

function setControlFocus(ctrlId)
{
    var ctrl = document.getElementById(ctrlId);
    if (typeof(ctrl) != 'undefined')
    {
        try
        {
            ctrl.focus();
        }
        catch(e)
        {
        }
    }
}
