
function checkPSI(what)
{
    for (var i = 0; i < what.psiChoice.length; i++)
	{
        if (what.psiChoice[i].checked)
            return true;
    }
    alert('Please Choose a PSI Level');
    return false;
}
