	function WriteTopWin(align, bordercolor, title){
      				document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
      				document.write("        	<tr>"); 
	  				document.write("      		<td width=11 height=22><img src='images/bl_footer.gif' width='11' height='22'></td>");
					document.write("			<td bgcolor='#F7F7F7' height=22 STYLE='background: URL(images/bk_footer.gif) ' >");
					document.write("				<span class='smalltitle'>");
					document.write("				<!-- BEGIN TITLE -->");
					document.write(title);
					document.write("				<!-- END TITLE -->");
					document.write("				</span>");															
					document.write("			<td width=11 height=22><img src='images/br_footer.gif' width='11' height='22'></td>");               
					document.write("      	</tr>");            
					document.write("    </table>");
					document.write("	<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
					document.write("   		<tr>"); 
					if ( align=="right" || align=="RIGHT" || align=="center" || align=="CENTER" ) {
						document.write("			 <td width='1' bgcolor=" + bordercolor + "><img src='images/i_spacer.gif' width='1' height='1' border='0'></td>");
					}
					else{
						document.write("			 <td width='1' ><img src='images/i_spacer.gif' width='1' height='1' border='0'></td>");		
					}
					document.write("			 <td width='4'><img src='images/i_spacer.gif' width='4' height='1' border='0'></td>");					
					document.write("             <td>");
					document.write("			 <p class='normaltext'>");
					document.write("			 <!-- BEGIN CONTENT -->");
			}

			function WriteBottomWin(align, bordercolor){		
					document.write("			  <!-- END CONTENT -->");
					document.write("			  </p></td>");
					document.write("			  <td><img src='images/i_spacer.gif' width='4' height='1' border='0'></td>");					
					if ( align=="left" || align=="LEFT" || align=="center" || align=="CENTER" ) {
						document.write("			  <td width='1' bgcolor='" + bordercolor + "'><img src='images/i_spacer.gif' width='1' height='1' border='0'></td>");             
					}
					else{
						document.write("			  <td width='1' ><img src='images/i_spacer.gif' width='1' height='1' border='0'></td>");                   	
					}		
					document.write("            </tr>");
					if ( align=="center" || align=="CENTER" ) {
						document.write("			<tr><td><img src='images/i_spacer.gif' width='1' height='1' border='0'></td><td colspan='3' bgcolor='" + bordercolor + "'><img src='images/i_spacer.gif' width='1' height='1' border='0'></td><td><img src='images/i_spacer.gif' width='1' height='1' border='0'></td></tr>");
					}
					document.write("      </table>");
			}