
/**
 * hupdatebtn
 * @param	string	object id
 * @param	string	filename
 */
function hupdatebtn( passid, passfilename ) {

 if( document.images ){

	document.images[passid].src = passfilename;
 }
}

function pagebackbtn(){

	history.back();
}
function contactresetbtn(){

	document.getElementById('company').value = "";
	document.getElementById('name').value = "";
	document.getElementById('email').value = "";
	document.getElementById('description').value = "";
}
function contactreturnbtn(){

	document.contact_check.action = "index.php";
	document.contact_check.submit();
}


/*function Fcheck(){
	if( document.form.agreecheck.checked == false ){
		alert( "「個人情報の収集にあたって」への同意が必要となります" );
		return false;
	}
	return true;
}*/

function mouseAction( blockID, colorNo, bgcolorNo ){

	document.getElementById(blockID).style.color = colorNo;
	document.getElementById(blockID).style.backgroundColor = bgcolorNo;
}

