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


	
			// JavaScript Document

function createBookmarkLink()
{
	var title = document.title;

	var url = location.href;

	if(window.sidebar)
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url, "");
	}
	else if( window.external)
	{ // IE Favorite
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print)
	{ // Opera Hotlist
		return true;
	}
	
	return false;
}

	
