function addToFavorites(title, url)
{
	// set defaults if no arguments passed
	var title = title ? title : document.titles;
	var url = url ? url : location.href;
	var site_name = 'Promgirl.com';
	var allowFF = false;
	
	// IE Compatible
	if (document.all && window.external) { 
		window.external.AddFavorite(url, title) 
	// Firefox side panel
	} else if (allowFF && window.sidebar) { 
		window.sidebar.addPanel(title, url, '');
	// Bookmarking not supported
	} else { 
		alert("Your browser does not support automatic site bookmarking.\n"
			+ "Please bookmark " + site_name + " manually:\n\n"
			+ "Click OK and then press Ctrl + D"); 
	}
}
