function bookmark(url, description)
{
//***---This text will be shown to the visitor if it has Netscape.
netscape="First push OK and then hit CTRL+D to add a bookmark to this site."

if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}

function redirect(id) {
//function redirects selected item from list
	
	var index, link;
	
	index=document.getElementById(id).selectedIndex; //getting selected index value
	link=document.getElementById(id).options[index].value; //getting selected value
	if (index != 0) { //it ignores the first element which is QuickList
		location.href=link;
	}
}




