function loadHtml(sUrl)
{
	var req = new XMLHttpRequest();
	
	if( req )
　　{
　　　　req.onreadystatechange = function()
　　　　{
　　　　　　var strHtml = "方象響函払移";
　　　　　　try
　　　　　　{
　　　　　　　　if( req.readyState == 4 && ( req.status == 200 || req.status == 304 ) )
　　　　　　　　{
					strHtml = req.responseText;
				}
　　　　　　}
　　　　　　catch(e)
　　　　　　{
				strHtml = e.description;
　　　　　　}
　　　　　　document.getElementById( 'content' ).innerHTML = strHtml;
　　　　};
　　　　req.open( 'GET', sUrl );
　　　　req.send( null );
　　}
}

function onStaticsDL(pdt)
{
	var req = new XMLHttpRequest();
	if(req!=null)
　　{
		req.open( 'POST', 'StatisticDL.asp?ProductName=' + pdt ,true);
　　　　req.send(null);
　　}
}

function returnStep(nStep)
{	
	window.parent.history.back(nStep);
}