﻿// JavaScript Document
function SetDivInnerHtml(aObj,aValue)
{
	//产品名称
	var obj = document.getElementById(aObj);
	obj.innerHTML = aValue;
}
