﻿// JScript File


    
  function AddToBookmarks (url,title) 
  { 
     window.external.AddFavorite(url,title); 
  }  
    
  function charsleft(maxChars, eSource, eText)
  {
   var currentChars = eSource.value.length;
   eText.innerHTML = Math.max((maxChars - currentChars),0);
   if(currentChars > maxChars)
   {
    eSource.value = eSource.value.substring(0,maxChars);
   }
  }
