function bookmarkProfile(url, who)
{
    var ver = navigator.appName;
	var num = parseInt(navigator.appVersion);
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) 
	{
        window.external.AddFavorite(url,who);
    }
    else
    {
        alert ('click Ctrl+D');
    }
}

function favoriteProfile(typ, name)
{
    var shouldFavorite = confirm('Add ' + name + ' to your Favorites List?');
    return shouldFavorite;
}

function popViewsFavorites()
{
    window.open('pops/popViewsFavorites.aspx','ViewsFavorites', 'left=475,top=20,height=450,width=530,channelmode=0,directories=0,fullscreen=0,location=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0');
}	

