
function getCookie(name) {    
	var search = name + "=";   
	if (document.cookie.length > 0) { 
		var offset = document.cookie.indexOf(search);   
		if (offset != -1) {
			offset += search.length;   
	 
			end = document.cookie.indexOf( "; ", offset);    
	
			if(end == -1) {
				end = document.cookie.length;    
			}
			return document.cookie.substring(offset, end);    
		}    
	}    
	return "";
}

$.realLength = function (str) {
	return str.replace(/[^\x00-\xff]/ig, "**").length; 
} 

$(function () {
	
	VIEW_STATE += ";" + window.location.href;
	return ;
	var site = 'http://www.116114shop.com';
	if (/^.+\.116114shop\.com/.test(window.location.host)) {
		site = 'http://www.wo116114.com';
	}
	
	var h = window.location.host.split(":");
	
	if (h.length > 1) {
		site = site + ":" + h[1];
	}
	var sessionid = getCookie('tdsessionid');
	var uid = getCookie('uid');
	var obj = document.createElement("iframe");
	obj.height = 0;
	obj.width = 0;
	obj.style.display = "none";
	obj.src = site + '/cookie.php?id=' + sessionid + '&u=' + uid + '&r=' + Math.random();

	document.body.appendChild(obj);	
});
