function Check(chk)
{
	if(document.request.all.checked==true){
		for (i = 0; i < chk.length; i++)
		chk[i].checked = true ;
		alert('Please check the EZ bid box above, if required');
		}
		
	else{

	for (i = 0; i < chk.length; i++)
	chk[i].checked = false ;
	}
}

function checkalert(chk)
{
	if (chk.checked){
		alert('Please check the EZ bid box above, if required');
	}
}

function Checkbox($id)
{
	
	var $check = document.getElementById($id).checked;
	if ($check == false){
		alert('Please check the box to continue');
		return false
	}
}