<!-- Begin

// JavaScript Document
function styleOver(id,oddeven,clickable){
	if(oddeven==0){
		document.getElementById("newsliststart_"+id).style.backgroundColor = '#c1e1d2';	
	}else{
		document.getElementById("newsliststart_"+id).style.backgroundColor = '#c1e1d2';	
	}
	if(clickable==1){
		document.getElementById("newsliststart_"+id).style.cursor = 'Pointer';
		document.getElementById("link_"+id).style.textDecoration = 'underline';
	}else{
		document.getElementById("newsliststart_"+id).style.cursor = 'Default';
	}
}
function styleOut(id,oddeven,clickable){
	if(oddeven==0){
		document.getElementById("newsliststart_"+id).style.backgroundColor = '#f3f3f3';	
	}else{
		document.getElementById("newsliststart_"+id).style.backgroundColor = '#ffffff';	
	}
	if(clickable==1){
		document.getElementById("link_"+id).style.textDecoration = 'none';
	}
}
function divClick(url){
	window.location=url;
}
//  End -->

