﻿function getcookieex(name){var cookie_start=document.cookie.indexOf(name+'=');var cookie_end=document.cookie.indexOf(";",cookie_start);if(cookie_start==-1){return'';}else{var msg=document.cookie.substring(cookie_start+name.length+1,(cookie_end>cookie_start?cookie_end:document.cookie.length));while(msg.indexOf('+')!=-1){msg=msg.replace('+',' ');}return unescape(decodeURI(msg));}}function setcookie(cookieName,cookieValue){var expires=new Date();expires.setTime(expires.getTime()+24*60*60*365);document.cookie=cookieName+'='+escape(cookieValue)+';expires='+expires.toGMTString();}function SetCity(value){setcookie('MplifeArea',value);}
