function rowOverEffect(object) {
  if (object.className == 'dataTableRow') object.className = 'dataTableRowOver';
}

function rowOutEffect(object) {
  if (object.className == 'dataTableRowOver') object.className = 'dataTableRow';
}

function changeText()
{
	var mylist=document.getElementById("NewsImage")
	if(mylist.selectedIndex == 0){
		document.getElementById("uploaded_img").src="img/uploads/blank.gif"
	}else{
		document.getElementById("uploaded_img").src="img/uploads/" + mylist.options[mylist.selectedIndex].text
	}
}