/* Browser bookmark script */
/* Date: 07/28/06 */

function bookmark(url, description) {
	netscape="Please click OK then press Ctrl+D to bookmark this site.";
	if (navigator.appName=='Microsoft Internet Explorer')
		{
			url="http://www.teen-nudists.net/";
			description="Teen-Nudists.net - Free Teen Nudists Pictures!";
			window.external.AddFavorite(url, description);
		}
		else if (navigator.appName=='Netscape')
		{
			alert(netscape);
		}
}