function p(j){return document.getElementById(j)}
function o(j){return document.getElementById(j).style}
var tab_cur=new Array();
function tab_init(mod,t){
	var max=1;
	p(mod+".t"+t).className="selected";
	tab_cur[mod]=t;
	while(p(mod+"."+max)){
		tab_set(mod,max);
		max++
	}
}
function tab_set(mod,t){
	var f=function c(){
		if(t!=tab_cur[mod]){
			p(mod+".t"+tab_cur[mod]).className="";
			o(mod+"."+tab_cur[mod]).display="none";
			p(mod+".t"+t).className="selected";
			o(mod+"."+t).display="block";
			tab_cur[mod]=t;
		}
	}
	if (p(mod+".t"+t)){
	p(mod+".t"+t).onclick=f;
	}
}
/*---------------------------------------------*/
function search4(){            
if(zxsearchform.abc0.checked)            
window.open("http://search.sina.com.cn/cgi-bin/search/search.cgi?_searchkey="+zxsearchform.key.value,"mspg0"); 
if(zxsearchform.abc1.checked)
window.open("http://www.sogou.com/web?query="+zxsearchform.key.value,"mspg1");            
if(zxsearchform.abc3.checked)            
window.open("http://www.google.com/search?hl=zh-CN&ie=GB2312&q="+zxsearchform.key.value,"mspg3");            
if(zxsearchform.abc4.checked)            
window.open("http://cn.search.yahoo.com/search/cn?p="+zxsearchform.key.value,"mspg4");            
if(zxsearchform.abc7.checked)            
window.open("http://www.baidu.com/baidu?&word="+zxsearchform.key.value,"mspg7");            
return false;} 