<!--
function TurnPictureOn(tid) {
document.getElementById(tid).style.display = "";
}
function TurnPictureOff(tid) {
document.getElementById(tid).style.display = "none";
}
//-->