function validateForm(form){
		
	var strError = "";

	if(!form.agree.checked)
		strError+="You must accept the agreement!\n";

	if(strError!=""){
		alert(strError);
		return false;
	}
	else
		return true;
}


function swap(imgID){
		parent.document.images['pic'].src = imgID;
}