function writetoDescr(name, message) {
    if (document.layers) {
        document.layers[name].document.close();
        document.layers[name].document.write(message);
        document.layers[name].document.close();
    } else {
        if (document.all) {
            eval("document.all." + name + ".innerHTML='" + message + "'");
        } else {
            document.getElementById(name).innerHTML = message;
        }
    }
}


function cOn(td)
{
if(document.getElementById||(document.all && !(document.getElementById)))
{
td.style.backgroundColor="#ffcc33";
}
}

function cOut(td)
{
if(document.getElementById||(document.all && !(document.getElementById)))
{
td.style.backgroundColor="";
}
}

function go1()
{

if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
location.href = "viscard_"+document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
}

function go2()
{

if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
location.href = ""+document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
}


