function createCont(name, left, top, width, height, visible, z, bgc, onmouseover, onmouseout, content) {
if (document.layers) {
document.writeln('');
document.writeln(content);
document.writeln('');
}
if (document.all) {
document.writeln('
');
document.writeln(content);
document.writeln('
');
}
}
function showCont(name){
var n = (document.layers) ? 1:0
var ie = (document.all) ? 1:0
if (n) document.layers['' + name].visibility = "show";
if (ie) document.all['' + name].style.visibility = "visible";
}
function hideCont(name){
var n = (document.layers) ? 1:0
var ie = (document.all) ? 1:0
if (n) document.layers['' + name].visibility = "hide";
if (ie) document.all['' + name].style.visibility = "hidden";
}