function addbookmark()
{
bookmarkurl="http://www.firsthousepage.com"
bookmarktitle="First Time Buyer Resources"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

//Function to limit text entered into textarea 
function limitText(textArea, length) {
    if (textArea.value.length > length) {
        textArea.value = textArea.value.substr(0,length);
    }
}