<!--
// Text-Based Menu Mouseover Code ///////////////////////////////////////

function cellOnHeading(div){
if(document.getElementById||(document.all && !(document.getElementById))){
div.style.color="#ffffff";
div.style.cursor="pointer";
div.style.backgroundColor="#0037A7";
div.style.textDecoration="none";}
}

function cellOffHeading(div){
if(document.getElementById||(document.all && !(document.getElementById))){
div.style.color="#B0C1E5";
div.style.cursor="pointer";
div.style.backgroundColor="#001132";
div.style.textDecoration="none";}
}

function cellOn(div){
if(document.getElementById||(document.all && !(document.getElementById))){
div.style.color="#FFF196";
div.style.cursor="pointer";
div.style.textDecoration="none";}
}

function cellOff(div){
if(document.getElementById||(document.all && !(document.getElementById))){
div.style.color="#16619A";
div.style.cursor="pointer";
div.style.textDecoration="none";}
}


// Pop Up Script /////////////////////////////////////////////////////////

 function view_popup(page,name)
 {
 var mywin= window.open(page, name, "width=660,height=500,scrollbars=no");
 mywin.moveTo(80,60);
 mywin.focus();
 }
 //-->