var formsSectionName = new Array();
var formsSectionFullName = new Array();
var folder = 100;
var tempHtml;

if (!(path))
{
	var path;
	path = "../../";
}

// =======================================================================================================

formsSectionName = ["ee","er","se","pa"];
formsSectionFullName = ["&#20721;&#21729;","&#20721;&#20027;","&#33258;&#20721;&#20154;&#22763;","&#20445;&#30041;&#25104;&#21729;"];

// =======================================================================================================

tempHtml = '   <table width="100%"  border="0" cellspacing="0" cellpadding="0">';
tempHtml += '    <tr>';

for (i=0; i<formsSectionName.length; i++){
	if (formsSectionName[i] == formsSection){
		//alert(formsSectionFullName[i]);
		tempHtml += '        <td width="25%" height="30" align="center" bgcolor="#347BA5" class="white01"><strong>'+formsSectionFullName[i]+'</strong></td>';
	} else {
		tempHtml += '        <td width="25%" height="30" align="center" bgcolor="#B5D6E9" class="white01" onMouseOver="javascript:this.bgColor=\'#347BA5\'" onMouseOut="javascript:this.bgColor=\'#B5D6E9\'"><strong><a href="../FOF0'+folder+'/forms_'+formsSectionName[i]+'.htm" class="white01">'+formsSectionFullName[i]+'</a></strong></td>';
	}
	if (i < (formsSectionName.length-1)){
		tempHtml += '        <td><img src="'+path+'images/common/spacer.gif" width="1" height="1"></td>';
	}
	folder+=20;
}

tempHtml += '      </tr>';
tempHtml += '      <tr bgcolor="#3F91C3">';
tempHtml += '        <td colspan="7"><img src="'+path+'images/common/spacer.gif" width="1" height="2"></td>';
tempHtml += '      </tr>';
tempHtml += '    </table>';


document.write (tempHtml); 
