function PresentHead()
{
	var strHtml;
	strHtml = 	
				'<tr height="13%"><td>'+
				'<table border="0" cellspacing="0" cellpadding="0" align="left" width="100%" height="100%">'+
							'<tr><td>'+
          							'<img src="CA_v4_r3_c1.jpg" border="0" width="100%" height="18">'+
          					'</td></tr>'+
          					'<tr><td>'+ 
          							'<img src="KWGR614_cfig_screen.gif" border="0" width="750" height="85">'+
          					'</td></tr>'+
           					'<tr><td>'+ 
          							'<img src="CA_v4_r4_c1.jpg" border="0" width="100%" height="6">'+
          					'</td></tr>'+         					
      			'</table>'+
   				'</td></tr>';

	document.write(strHtml); 
}
function PresentMenu(menuItem)
{
	var drakblue ='#FFFFFF';
	var white	 ='#CCCCCC';
	var strHtml;
		strHtml= '<tr height="87%"><td valign="top">'+
  				 '<table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%" align="top">'+
					'<td valign="top" width="20%" bgcolor="#360199">'+ 
	  				'<table border="0" width="100%" cellspacing="0" cellpadding="0" align="left" bgcolor="#360199">';

  	document.write(strHtml);
	if(menuItem=='1. Get ready')
		PrintMenuItem(show1, drakblue);
	else
		PrintMenuItem(show1, white);
	if(menuItem=='2. Connect equipment')
		PrintMenuItem(show2, drakblue);
	else
		PrintMenuItem(show2, white);
	if(menuItem=='3. Activate network')
		PrintMenuItem(show3, drakblue);
	else
		PrintMenuItem(show3, white);
				
	if(menuItem=='4. Secure network')
		PrintMenuItem(show4, drakblue);
	else
		PrintMenuItem(show4, white);
	if(menuItem=='5. Success')
		PrintMenuItem(show5, drakblue);
	else
		PrintMenuItem(show5, white);

	strHtml=    	
						'</table>'+
						'</td>'+
						'<td valign="top" width="1%" bgcolor="#ffffff">'+ 
							'<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">'+
								'<tr height="100%"><td valign="top">'+
								'<IMG src="CA_v4_r5_c5.jpg" width="6" height="100%" >'+
								'</td></tr>'+
							'</table>'+
						'</td>';
   	document.write(strHtml); 

}
function PrintMenuItem(content, color)
{
	var background = '#360199';
	var strHtml;	
	strHtml=
					'<tr>'+  
          				'<td width="10%" bgcolor="#360199">&nbsp;</td>'+ 
          				'<td bgcolor="#360199">&nbsp;</td>'+ 
         			'</tr>'+ 
					'<tr>'+  
          				'<td width="10%" bgcolor="#360199">&nbsp;</td>'+ 
          				'<td bgcolor="#360199">'+
          				'<font face="Arial">';
    document.write(strHtml);
	document.write(content.fontcolor(color).bold().fontsize(3));  
	strHtml=
          				'</font>'+
          				'</td>'+ 
         			'</tr>';
	document.write(strHtml);
}
