
/******************************************************
	Index:
	  
	1) WEMF
		1.0) Update Page Impression
		
******************************************************/


/* --------------------------------------------------------------------------------------------- */
/* 1) WEMF
/* --------------------------------------------------------------------------------------------- */


	GLOBAL['WEMF'] = {};
	GLOBAL['WEMF']['sk'] = 'TOPIN/home';

// 1.0) Update Page Impression
// .......................................................................

	GLOBAL['WEMF'].update = function() {

		setTimeout(function(){
							
			var url = GLOBAL['WEMF_BASE_URL'];
			var img = new Image();
			img.src = url + GLOBAL['WEMF'].sk + '?d=' + (Math.random() * 1000);
		}, 0);
	};
	