function hrefTO(href){
  document.all["pageLoad"].src = href;
}
function winopen(href,www,hhh){
  window.open(href,null,"left=100,top=100,width="+www+",height="+hhh+",scrollbars=yes,toolsbar=no");
  //alert(href);
}
//-------------------------------------------------------
//点击改变背景颜色和文字颜色
//-------------------------------------------------------
function colorM(id,c1,c2,tagsStr){
  var thAll = document.all.tags(tagsStr);
  for(i=0;i<=(thAll.length)-1;i++){
    if(thAll(i).name=="color"){
	   thAll(i).style.backgroundColor=c2;
	   thAll(i).style.color="#000000";
	}
  }
  document.all[id].style.backgroundColor=c1;
  document.all[id].style.color="#FFFFFF";
}