function docheck(opj)
{
var theRadioValue="";
for (theRadioI=0;theRadioI<opj.length;theRadioI++){
	if (opj[theRadioI].checked){
		theRadioValue = opj[theRadioI].value;
		break;
	}
}
return theRadioValue;
}
function docheck1()
{
if (docheck(document.forma.age)!="1"||docheck(document.forma.smoke)!="1")
{
	document.getElementById("err").innerHTML="<font color='#00FFFF'>Sorry, however you must be of legal age to view this site.</font>";
	return false;
}
}
