// JavaScript Document
function hover(typ){
document.getElementById('td'+typ).style.backgroundColor='#ffcc00';
}
function nohover(typ){
document.getElementById('td'+typ).style.backgroundColor='#99cc33';
}

