function addToFavorites(urlAddress,pageName)
{
	if (window.external){window.external.AddFavorite(urlAddress,pageName)}
	else{alert("Sorry! Your browser doesn't support this function. Use Ctrl+D to bookmark.");}
}

//http://www.learningmovabletype.com/archives/001583dynamic_comment_previewing.php
// Dynamic Comment Preview - Kudos to Mike Industries for the inspiration!
// D.C.P. - Comment Text
function ReloadTextDiv() {
document.getElementById('TextDisplay').innerHTML = '<p>'+document.getElementById('comment-text').value.replace(/(\r\n|\n)/g,'<br />').replace(/(<br \/>){2,}/gi,'<'+'/p><p>')+'<'+'/p>';
}
// End Dynamic Comment Preview