function status() {
the_form = document.getElementById('my_form');
for (i = 0; i < the_form.elements.length; i++) {
the_element = the_form.elements[i];
if(the_element.type == 'checkbox' && the_element.checked == true) {
return true;
}
}
return false;
}
function Validate(inform) {
if(!status()) {
alert('You have not checked any selections.');
return false;
}
}
function helpselect()
{
window.open("popuphelpselect.php", "_new", "dependent=1,directories=0,height=400,location=0,menubar=0,screenx=0,screeny=0,resizable=no,screenx=0,screeny=0,,scrollbars=1,titlebar=0,toolbar=0,width=450,left=30,top=50");
}
function help()
{
window.open("popuphelp.php", "_new", "dependent=1,directories=0,height=400,location=0,menubar=0,screenx=0,screeny=0,resizable=no,screenx=0,screeny=0,,scrollbars=1,titlebar=0,toolbar=0,width=450,left=30,top=50");
}

