/*
function importJS(u) {
    var x=window.ActiveXObject?new ActiveXObject("MSXML2.XMLHTTP"):new XMLHttpRequest();
    x.open("GET",u,false);
    x.send(null);
    s=x.responseText;
    try {window.execScript(s)}catch(ex){window.eval(s)};//Mozilla下window.eval大致与IE的window.execScript方法功能相同
}
var currPage = window.location.href;
var refePage = document.referrer;

importJS("../dwr/interface/InserRecordUtil.js");
importJS("../dwr/engine.js");
importJS("../dwr/util.js");


try {
//DWREngine.setAsync(false);  
	InserRecordUtil.insert(hi, currPage, refePage);
}catch(e) {
	alert(e.message);
}
function hi(data){
// 	alert(0);
  }

// 
 */