function MyList_item(object)
{
	if(object.options[object.selectedIndex].value == ""){
		alert('Please choose a list');
		return false;
	}
	else{window.location.href = object.options[object.selectedIndex].value;}
}