// JavaScript Document
function checkValue(rad, radValue, target)
{
if(rad.value == radValue)
show(target);
else hide(target);
}

function show(itemID)
{
document.getElementById(itemID).style.display="block"
}

function hide(itemID)
{
document.getElementById(itemID).style.display="none"
}