function bookmarksite() 
{ 
if (document.all) 
window.external.AddFavorite(self.location,document.title); 
else if (window.sidebar) 
window.sidebar.addPanel(document.title,self.location, "") 
} 


function ClientValidate(source, arguments)
{
    if (arguments.Value.length > 1000)
    arguments.IsValid = false;
    else
    arguments.IsValid = true;
}
