// JavaScript Document

function show(id,tf) {
if (tf == true) {
id.style.display = "block"
}
if (tf == false) {
id.style.display = "none"
}
}

function textme(msg) {
textbox.innerHTML=msg
}

function showtext(id,tf,msg) {
if (tf == true) {
id.style.display = "block"
}
if (tf == false) {
id.style.display = "none"
}
id.innerHTML=msg
}

