
function changeColor(id){

	document.getElementById(id).style.backgroundColor="#FFC0CB";
	document.getElementById(id).style.color="#FF0000";

}

function resetColor(id){

	document.getElementById(id).style.backgroundColor="#DCDCDC";
	document.getElementById(id).style.color="#696969";

}

function subchangeColor(id){

	document.getElementById(id).style.backgroundColor="#FF69B4";

}

function subresetColor(id){

	document.getElementById(id).style.backgroundColor="#FFE4E1";

}

function checkForm(){
	if(document.thisform.name.value==''){
		alert('お名前を入力してください');
		document.thisform.name.focus();
		return false;
	}
	else if(document.thisform.mail.value==''){
		alert('メールアドレスを入力してください');
		document.thisform.mail.focus();
		return false;
	}
	else if(document.thisform.content.value==''){
		alert('お問合せ内容を入力してください');
		document.thisform.content.focus();
		return false;
	}
	else{
		return true;
	}
}