function addToFavorites()
{
    window.external.AddFavorite(location.href, document.title)
}


function openModalDialog(url, w, h)
{
	return OpenWindow(url, 'popup', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + w + ',height=' + h);
}

function OpenWindow(url, name, options)
{
	window.open(url, name, options);
	return;
}