function changePanel(panelName){
	if(panelName=="brand"){
	    window.document.getElementById("brand1").className = "menuBg";
	    document.getElementById("product1").className = "a2";
	    document.getElementById("store").className = "a2";
		getEl("commendBrandFrame").src="brandChannel.do?method=commendBrands";		
	}
	if(panelName=="product"){
	    window.document.getElementById("product1").className = "menuBg";
	    document.getElementById("brand1").className = "a2";
	    document.getElementById("store").className = "a2";
		getEl("commendBrandFrame").src="product.do?method=commendProducts";
	}
	if(panelName=="company"){
	    window.document.getElementById("store").className = "menuBg";
	    document.getElementById("brand1").className = "a2";
	    document.getElementById("product1").className = "a2";
		getEl("commendBrandFrame").src="companyChannel.do?method=commendCompanys";
	}
}

function reCheckedOfValue(checkboxId){
		var count=document.getElementsByName(checkboxId).length;
		var str="";
		if(isSelected(checkboxId)){
			for(var i=0;i<count;i++){
				if(document.getElementsByName(checkboxId)[i].checked){
					str+="," + document.getElementsByName(checkboxId)[i].value;
				}
			}
		 	if(str != ""){
		 		return str;
		 	}
		}
		return false;
}
function getTicket(quetionAnswers,url,alertStr){
	var str=reCheckedOfValue(quetionAnswers);
	if(str==false) {
		alert(alertStr);
		return false;
	}
	window.open(url+"&str="+str,'null',"width=440,height=360");
}

function seeTicket(url){
	window.showModalDialog(url,"null","width=440,height=200");
}
