function addbookmark(domain,title)
{
//bookmarkurl="http://www.thaiwebdesigns.com/"
bookmarkurl=domain

bookmarktitle=title
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function getTitle(){
	var titleElement;
	titleElement = document.getElementsByTagName('title')[0];
	return titleElement.nodeName;
}

