
<!--
function mouseover(object) {
object.style.backgroundColor = '#DCEAF1';
//object.style.cursor = 'default';
object.style.cursor = 'hand';
return;
}
function mouseout(object) {
object.style.backgroundColor = '';
return;
}
function clickurl(url) {
this.document.location.href = url;
return;
}
function clicknew(url){
//this.document.location.href = url;
mywin=window.open(url);
return;
}
//-->


