// JavaScript Document
function showDiv(num){
var TRBimgUrl = new Array();
var TRBimgUrl_on = new Array();

TRBimgUrl[0] = '/images/mobile.gif';
TRBimgUrl_on[0] = '/images/mobile_on.gif';
TRBimgUrl[1] = '/images/shuma.gif';
TRBimgUrl_on[1] = '/images/shuma_on.gif';
TRBimgUrl[2] = '/images/pc.gif';
TRBimgUrl_on[2] = '/images/pc_on.gif';

	for (i=1;i <= 3 ; i++)
	{
		if (i == num){
			document.getElementById('img0'+i).src=TRBimgUrl_on[i-1];
			document.getElementById('divType'+i).style.display= 'block';
		}else{
			document.getElementById('img0'+i).src=TRBimgUrl[i-1];
			document.getElementById('divType'+i).style.display= 'none';
		}
	}	
}
function showArticle(obj){
	var arr = ["mob","di","pc"];
	for(var i=0;i<arr.length;i++){
		if(obj.id==arr[i]){
			document.getElementById(arr[i]).className="tabon";
			document.getElementById(arr[i]+'Div').style.display="block";
		}
		else{
			document.getElementById(arr[i]).className="taboff";
			document.getElementById(arr[i]+'Div').style.display="none";

		}
	}
}
function checkReview(){
  if(document.getElementById("UserContent").value==""){
		alert("提示：\n\n请填写内容！！！");
	    document.getElementById("UserContent").focus();
        return false;
	}
}
function goSearch(){
  if(document.getElementById("key").value==""){
		alert("提示：\n\n请填写关键字！！！");
	    document.getElementById("key").focus();
        return false;
	}
	else
	window.open("http://www.haixia.com.cn/Search.aspx?key="+document.getElementById("key").value);
}

