function addbookmark(url, name){
if (document.all)
window.external.AddFavorite(url,name);
}

var isReady=true ;
function doSaveAs()
{
	if (document.execCommand)
	{
		if (isReady)
		{
			window.document.execCommand("SaveAs",null,document.title);
		}
	}
	else
	{
	alert('Feature available only in Internet Exlorer 4.0 and later.');
	}
}

function setAsHomePage(obj, siteUrl)
{
	//obj.style.behavior='url(#default#homepage)';
	obj.setHomePage(siteUrl);
}
