﻿
//////////////////////////////////////////////////////////////////////////
function wmx_ClickTrack(productType,productModel)
{
var wmx_clid ="ECC";
var wmx_cpid="website";
var wmx_listid="790";
var thisURL=document.URL;
var thisReferral=document.referrer;
var thisTitle=document.title;
var trackURL="http://epson.emarketing.com.cn/web_service/list/add_s.aspx";

	var targetURL=trackURL+"?cli="+wmx_clid+"&li="+wmx_listid;
	targetURL+="&1="+encodeURIComponent(thisURL);
	targetURL+="&2=W_S_UID&3=W_S_SC&4=W_S_IP&5=W_S_DATE";
	targetURL+="&6="+encodeURIComponent(productType);
	targetURL+="&7="+encodeURIComponent(productModel);
        targetURL+="&8="+thisReferral+"&r="+Math.random();
	
	  var imgCounter = document.createElement("img");	
		imgCounter.width=1;
		imgCounter.height=1;
		imgCounter.src =targetURL;
          //document.write(targetURL);
}

