/**
 * 
 */
/************************************************************
 作者:		陈志银(魂影)
 描述:		ajax控制器!
 创建日期:	2011-2-08
 更新日期:	2011-2-10
 ************************************************************/

var xmlHttp;
var showid;
function s_xmlhttprequest(){
	if(window.ActiveXObject){
		xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
	}else if(window.XMLHttpRequest){
		xmlHttp = new XMLHttpRequest();
	}
}


//=====================获取多图缩略图=======================
function check_code(placeid,code){
	showid=placeid;
	s_xmlhttprequest();
	xmlHttp.open("GET", "checkcode.php?code="+code, true);
	xmlHttp.onreadystatechange = updatepage;
	xmlHttp.send(null);
}


function updatepage(){
	if(xmlHttp.readyState==1){
		document.getElementById(showid).innerHTML="<img src='loading.gif'>";
	}
	if(xmlHttp.readyState==4){
		if(xmlHttp.status==200){
			var restr = xmlHttp.responseText;
			document.getElementById(showid).innerHTML = restr;
		}			
	}
}

function returnrs(){
	if(xmlHttp.readyState==4){
		if(xmlHttp.status==200){
			var restr = xmlHttp.responseText;
			alert(restr);
		}			
	}
}

function change_code(viewid){
	document.getElementById(viewid).innerHTML = "<img src='soulCode.php' align='absmiddle'/>";
}

