// JavaScript Document
document.write("<table width='100%' align='left' cellpadding='0' cellspacing='3' border='0'>");

//华南地区
document.write("<tr>");
document.write("<td id='mingluwenzi' width='72'>华南地区:</td>");
document.write("<td id='mingluwenzi2'>");
//广州
document.write("<div style='float:left'><a href='age_gz.html'>广州</a> ");
//深圳
document.write("<a href='age_sz.html'>深圳</a> ");
//东莞
document.write("<a href='age_dg.html'>东莞</a> ");
//其他地区
document.write("<a href='age_qtdq.html'>其它区域</a></div></td><td> ");
document.write("<div id='yanzheng' style='position:relative; font:Verdana; font-size:12px; color:#0063BC;padding:0px; z-index:3;float:right;' onmouseOver='showPopInfo();' onmouseOut='hidePopInfo();'><img src='images/i.gif' /> <font style='text-decoration:underline;'>代理商资质认证</font></div>");
document.write("</td></tr>");

//华东地区
document.write("<tr>");
document.write("<td width='72' id='mingluwenzi' >华东地区:</td>");
document.write("<td id='mingluwenzi2'>");
//上海
document.write("<a href='age_sh.html'>上海</a> ");
//江苏
document.write("<a href='age_js.html'>江苏</a> ");
//浙江
document.write("<a href='age_zj.html'>浙江</a> ");
document.write("</td><td rowspan='3' style='text-align:left;'><div id='content' class='contentY' style='display:none;color:#333' onmouseOver='showPopInfo();' onmouseOut='hidePopInfo();'>华南：020-85115345/85115070/85115305<br/>华东：021-54893737-122<br/>华北：020-85115070</div></td></tr>");
	
//华北地区
document.write("<tr>");
document.write("<td width='72' id='mingluwenzi'>华北地区:</td>");
document.write("<td id='mingluwenzi2'>");
//北京
document.write("<a href='age_bj.html'>北京</a> ");
document.write("</td></tr>");

//西南地区
document.write("<tr>");
document.write("<td width='72' id='mingluwenzi'>西南地区:</td>");
document.write("<td id='mingluwenzi2'>");
//四川
document.write("<a href='age_sc.html'>四川</a> ");
//重庆
document.write("<a href='age_cq.html'>重庆</a> ");
//贵州
document.write("<a href='age_guiz.html'>贵州</a> ");
document.write("</td></tr></table>");
function showPopInfo() {
	document.getElementById("yanzheng").style.borderBottom="0";
	//document.getElementById("yanzheng").style.background="#FFFFFF";
	document.getElementById("content").style.display="";
}
function hidePopInfo() {
		//document.getElementById("yanzheng").style.borderBottom="1px solid #B3CFDC";
	//document.getElementById("yanzheng").style.background="#F3F7FA";
	document.getElementById("content").style.display="none";
} 