function bookmarkpage(url,title){	if ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) >= 4)) {	window.external.AddFavorite(url,title);	}	else if (navigator.appName == 'Netscape') {	window.sidebar.addPanel(title,url,"");	}	else if (window.opera && window.print) {	alert('Please close this box and then press the following keys to bookmark:\n\nCtrl+Shift+D');	}	else {	alert('Please close this box and then press the following keys to bookmark.\n\nNetscape users: Ctrl+D\n\nOpera users: Ctrl+Shift+D');	}}