function CountChars() 
{ 

    try
    {
	    var objLabel = document.getElementById('lblCharacterCount');
        var objText = document.getElementById('txtMessageText');
         
        var IntValue = objText.value.length;
    	
        if (IntValue > 130)
        {
            objLabel.innerHTML = 'Message Character Count: ' + IntValue + ' (Message may be split or truncated)';
            objLabel.style.color = 'Red';  
        }        
        else
        {
            objLabel.innerHTML = 'Message Character Count: ' + IntValue;
            objLabel.style.color = '#666666';        
        }	
    }
    catch(err)
    {
    
    }
}

function Submit_onclick() 
{
    document.myform.submit();
}

function GetResolution()
{	
	//var X = screen.width;
	//var Y = screen.height;
	//if (X < 600)
	//{
	//	window.location="/eminder/MobileLogin.aspx";
	//}
}
	


