function ShowFlash(url, width, height){
document.write('');
}
function func_rollOver(obj, num, cnt){
for(i=1; i<=cnt; i++){
if(num==i.toString()){
document.getElementById('tb_' + i.toString()).style.display="block";
document.getElementById('td_' + i.toString()).style.backgroundColor="#f13139";
document.getElementById('td_' + i.toString()).style.color="white";
}else{
document.getElementById('tb_' + i.toString()).style.display="none";
document.getElementById('td_' + i.toString()).style.backgroundColor="white";
document.getElementById('td_' + i.toString()).style.color="#3c0101";
}
}
}
function func_mouseover(obj){
obj.style.cursor="hand";
obj.style.backgroundColor="#f46167";
obj.style.color="white";
}
function func_mouseout(obj, num){
if(document.getElementById('tb_' + num).style.display=="" || document.getElementById('tb_' + num).style.display=="none"){
obj.style.backgroundColor="white";
obj.style.color="black";
}
}
function flashObj(fileName, width, height, id, wmode, flashValue, alt){
document.write('');
}