function setHeight(){
	var l=$('leftMiddleBorder'),r=$('rightMiddleBorder'),l_h=l.offsetHeight,r_h=r.offsetHeight;
	var h=l_h>r_h ? l_h:r_h;
	l.style.height=h+'px';
	r.style.height=h+'px';
}

function sendMailTo(name, company, cn) {
      locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + cn;
      window.location.replace(locationstring);
   }
function $crt(o,t){
	t=document.createElement(t);
	return (typeof(o)=='object')?o.appendChild(t):$(o).appendChild(t);
}
function zh(){
	var bo=document.body || document.documentElement;
	var div1=bo.getElementsByTagName('div')[0];
	var createObj=document.createElement('div');
	var newObj=bo.insertBefore(createObj,div1);
	var newObjStyle={
		clear:'both',
		height:'58px',
		marginBottom:'20px',
		textAlign:'center',
		background:'url(/images/zhanhui_bg.gif) repeat-x'
	}
	for(var i in newObjStyle){
		newObj.style[i]=newObjStyle[i];	
	}
	newObj.innerHTML='<a href=http://www.zongyi.cn/2010.html><img src=/images/zhanhui.jpg /></a>';
}
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {  
    window.onload = function() {
      oldonload();
      func();
    }
  }
}
