// JavaScript Document
var xmlHttpPic;
function PicHttpRequest(){
	if(window.ActiveXObject){
		xmlHttpPic = new ActiveXObject("Microsoft.XMLHTTP");
	}else if(window.XMLHttpRequest){
		xmlHttpPic = new XMLHttpRequest();
	}
}
function Picstartreturn(){
	if(xmlHttpPic.readyState == 4 && xmlHttpPic.status == 200){
		alert(xmlHttpPic.responseText);
		//document.getElementById("picAddmsg").innerHTML='<a href="#" onClick="javascript:PicFavoriteAdd();">藏</a>';
		
	}
}
function PicFavoriteAdd(PicHash){
	PicHttpRequest();
	xmlHttpPic.open("GET","/pic/favorites.php?"+PicHash,true);
	//document.getElementById("picAddmsg").innerHTML='<img src=/images/loading.gif>';
	xmlHttpPic.onreadystatechange=Picstartreturn;
	xmlHttpPic.send(null);
}
function login(){
var sjmp5_geturl=escape(window.location.href);
	if (confirm("是否进行登陆?"))
	top.location = "/user/login.php?url="+sjmp5_geturl;
	return false;
}
function MobileSearch(){
	if(document.mobile_function.m_regional.value==0){
		alert("请选择手机区域");
		document.mobile_function.m_regional.select(); 
		return false;
	}  
	if(document.mobile_function.m_bigness.value==0){
		alert("请选择手机品牌（厂商）");
		document.mobile_function.m_bigness.select(); 
		return false;
	}  
	if(document.mobile_function.m_format.value==0){
		alert("请选择手机型号");
		document.mobile_function.m_format.select(); 
		return false;
	}  
	var id=document.getElementById("m_format").value;
	window.location.href='/pic/mobile_pic_format_list.php?id='+id;
	
	//document.getElementById("mobile_function").action='/pic/mobile_pic_bigness_list.php?id='+id;
	//document.forms["mobile_function"].submit();
}
