
function checkreq(which){



if (document.vetonline.akcept.checked == false ){	
	var inId = 'reg';

	document.getElementById(inId).style.backgroundColor="red"; // "#c5d3e0";
return false
}


return true
}


function checkask(which){

if (document.ask.temat.value.length <"5"){
document.ask.temat.style.backgroundColor="yellow"
return false
}else{
document.ask.temat.style.backgroundColor="white"	
}

if (document.ask.pytanie.value.length ==""){
document.ask.pytanie.style.backgroundColor="yellow"
return false
}else{
document.ask.pytanie.style.backgroundColor="white"	
}


return true
}
