
function changeWebLink(thisSelect) {
	var url = thisSelect.options[thisSelect.selectedIndex].value;
	if (url.length > 0) {
		window.open(url);
	}	
}

function createBookmarkLink(){

	 if (navigator.appName == "Netscape"){
	 //alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
	 window.sidebar.addPanel(window.document.title,parent.location.href,"");

	 }else if((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
	 {
	window.external.AddFavorite(parent.location.href,window.document.title);
	}else
	{
	 alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
	 }

}
