//";
var infomation_content = "";
function infomationShow(infomation_id) {
if (infomation_state != "OPEN") {
textHidden(infomation_id);
return;
}
document.getElementById(infomation_id).style.borderStyle = style_params["border-style"];
document.getElementById(infomation_id).style.borderColor = style_params["border-color"];
document.getElementById(infomation_id).style.backgroundColor = style_params["background-color"];
var this_text = infomation_title + "
" + infomation_content;
writeText(infomation_id, this_text);
textShow(infomation_id);
return;
}
function readText(targetid) {
if (document.getElementById(targetid) == null) { return(""); }
text = document.getElementById(targetid).innerHTML;
return(text);
}
function writeText(targetid, text) {
if (document.getElementById(targetid) == null) { return; }
document.getElementById(targetid).innerHTML = text;
return;
}
function textHidden(targetid) {
if (document.getElementById(targetid) == null) { return; }
document.getElementById(targetid).style.display = "none";
return;
}
function textShow(targetid) {
if (document.getElementById(targetid) == null) { return; }
document.getElementById(targetid).style.display = "block";
return;
}
//]]>