// JavaScript Document

function SAMPLE(onid,offid){
document.getElementById(onid).style.display = '';
document.getElementById(offid).style.display = 'none';
}