// JavaScript Document


//products,spot,
function setImage(file,cmt)
{
	//画像
	var tgtimg = document.getElementById("mainImage");
	tgtimg.src = file;
	
	//説明
	var tgtcomment = document.getElementById("imageComment");
	tgtcomment.innerText = cmt;
}


//contact
function updateForm(req)
{
	Spry.Utils.setInnerHTML('formBlock', req.xhRequest.responseText);
}

//route
function s(file,cmt,tgt,tgt2)
{
	//画像
	var tgtimg = document.getElementById(tgt);
	tgtimg.src = file;
	
	//説明
	var tgtcomment = document.getElementById(tgt2);
	tgtcomment.innerText = cmt;
}
