2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00
Files
CATI_Tool/js/new.js
azammitdcarf 0ef7c93737 New feature: Seperate limesurvey instrument for respondent selection
Dev Merged back changes from mcmasterlimers branch
2010-09-29 23:19:08 +00:00

26 lines
370 B
JavaScript

function showHide(me,id)
{
e = document.getElementById(id);
if (me.checked == true)
{
e.style.display = 'inline';
}
else
{
e.style.display = 'none';
}
}
function show(me,id)
{
e = document.getElementById(id);
e.style.display = 'inline';
}
function hide(me,id)
{
e = document.getElementById(id);
e.style.display = 'none';
}