var xmlhttp;function loadXMLDoc(url,func)//AJAX \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0445\u043C\u043B \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442{if (xmlhttp!=null)	{	delete xmlhttp;   	}xmlhttp=null	// code for IE	if (window.ActiveXObject)  {  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");  	xmlhttp.onreadystatechange =func;  }  // code for Mozilla, etc.else if (window.XMLHttpRequest)  {    xmlhttp=new XMLHttpRequest()	xmlhttp.onload =func;  }if (xmlhttp!=null)  {//if (xmlhttp.readyState==1 ) {  xmlhttp.abort();}    xmlhttp.open("GET",url,true);  xmlhttp.send(null);//  this.url=url;  }else  {  alert("Your browser does not support XMLHTTP.");  }}//------------------------------------------------------------------------------------------------------------------------------function EIMustDie(){window.alert(1);}//-----------------------------------------------------------------------------------------------------------------------------function SetCookie (name,value){var today = new Date();var expire = new Date(today.getTime() + (66*24+12)*60*60*1000);document.cookie = name + "=" + escape(value) +"; expires=" + expire.toGMTString() + "; path=/" ; return(true)}function GetCookie(name){if (document.cookie) { 	index = document.cookie.indexOf(name);	 if (index!=-1){		  countbegin = (document.cookie.indexOf("=",index)+1);		  countend = document.cookie.indexOf(";",index);		  if (countend==-1) {countend=document.cookie.length}		  myval = document.cookie.substring(countbegin,countend);		  // \u0447\u0440\u045E\u0448\u0451\u0404\u044A\u0440		  while (myval.charAt(0) == " ") {		  	myval = myval.substring(1,myval.length);		  }		  while (myval.charAt(myval.length-1)==" "){		  	myval=myval.substring(0,myval.length-1)		  }		   return(myval);	  }	  else { return(true) } 	   } else{ return(true)}}function Setlink (name){var today = new Date();var expire = new Date(today.getTime()+60*60*1000);var value=window.location.href document.cookie = name + "=" + escape(value)+"; expires=" + expire.toGMTString() + "; path=/" ; return(true)}function GoLink(name) {var today = new Date();var expire = new Date(today.getTime());link=GetCookie(name);window.location.replace(unescape(link))document.cookie = name + "=" + escape(link)+"; expires=" + expire.toGMTString() + "; path=/" ; return(true)}function OpenWin(imf) {myWin1= window.open(imf,"myWin1","width=680,height=400,status=no,location=no,toolbar=no,resizable=yes,scrollbars=yes,menubar=no");myWin1.focus();} function deletelink(name) {var today = new Date();var expire = new Date(today.getTime());link=GetCookie(name);document.cookie = name + "=" + escape(link)+"; expires=" + expire.toGMTString() + "; path=/" ; return(true)}