	//var xmlHttp; 
//	function createXMLHttpRequest() 
//	{ 
//		if (window.ActiveXObject) 
//		{ 
//			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
//		} 
//		else if (window.XMLHttpRequest) 
//		{ 
//			xmlHttp = new XMLHttpRequest; 
//		} 
//	} 
//	
//	function checkAjax(usrStr,searchingStr,mistakeStr)  
//	{ 
//		//alert(unescape(usrStr+searchingStr+mistakeStr));
//		createXMLHttpRequest(); 
//		var ThisspanName;
//		xmlHttp.onreadystatechange = function() 
//		{
//			alert("readyState:"+xmlHttp.readyState);
//			if (xmlHttp.readyState == 4 && xmlHttp.status == 200) 
//			{ 
//				ThisspanName = escape(xmlHttp.responseText); 
//			} 
//			else
//			{
//				ThisspanName = "Error";
//			}
//	
//		}; 
//		var url = usrStr; 
//		xmlHttp.open("GET",url,true); 
//		xmlHttp.send(null); 
//		return unescape(ThisspanName);
//	} 
//	
//	
//	
//	//================调用函数 上一张图片 spanimg是图片的ＩＤ，priveimg按钮的ＩＤ  ========================
//	function PrivePhoto(ExotericaID,spanimg,priveimg)
//		{
//			var ReturnPriveIMG =  checkAjax(escape("../showphoto.asp?act=prive&ExotericaID="+ExotericaID+"&spanimg="+spanimg+"&priveimg="+priveimg),"查询中...","");
//			alert(unescape(ReturnPriveIMG));
//		}
//		
//	function NextPhoto(ExotericaID,spanimg,priveimg)
//		{
//			//alert(ExotericaID+spanimg+priveimg)
//			var ReturnNextIMG =  checkAjax(escape("../showphoto.asp?act=next&ExotericaID="+ExotericaID+"&spanimg="+spanimg+"&priveimg="+priveimg),"查询中...","");
//			
//			//alert("ReturnNextIMG:"+ReturnNextIMG);
//			alert(unescape(ReturnNextIMG));
//		}