// JavaScript Document
function loadinfo(){
	document.getElementById("viewinfo1").innerHTML = document.getElementById("parameter").innerHTML;
	document.getElementById("viewinfo2").innerHTML = document.getElementById("productdetail").innerHTML;
}

<!--//
function checkask() {
		if (document.proask.strname.value == '' ) {
			window.alert('请填写您姓名!!');
			document.proask.strname.focus();
			return false;
		}
		if ( document.proask.strtel.value == '' ) {
			window.alert('请填写联系电话!!');
			document.proask.strtel.focus();
			return false;
		}
		if ( document.proask.strmemo.value == '' ) {
			window.alert('请填写您所需要询问的内容!!');
			document.proask.strmemo.focus();
			return false;
		}
		if ( document.proask.strmemo.value.length<4) {
			window.alert('您填写的询问内容太简单了!!');
			document.proask.strmemo.focus();
			return false;
		}
		return true;
	}

	//-->