function highlightselection()
{
    document.getElementById("kissid1").innerHTML="Here's the inner test";
//document.write("hello");
//document.getElementById("kissid1").innerHTML="Here's the inner test";
}

function hideDiv(hidewhichelement) {
if (document.getElementById) { // DOM3 = IE5, NS6
    document.getElementById(hidewhichelement).style.visibility = 'hidden';
}
else {
if (document.layers) { // Netscape 4
    document.hideShow.visibility = 'hidden';
}
else { // IE 4
    document.all.hideShow.style.visibility = 'hidden';
}
}
}

function showDiv(showwhichelement) {
if (document.getElementById) { // DOM3 = IE5, NS6
    document.getElementById(showwhichelement).style.visibility = 'visible';   
}
else {
if (document.layers) { // Netscape 4
    document.hideShow.visibility = 'visible';
}
else { // IE 4
    document.all.hideShow.style.visibility = 'visible';
}
}
}

function showInstructions(whichinstructions) {
    document.getElementById(whichinstructions).style.display = 'Other';   
}