//related_articles_wrapper

function fill_related_articles_wrapper_div_for_related_articles_through_js(){
    try
    { 
        var Target = document.getElementById('related_articles_wrapper');
        if (Target != null){                
			var txt="";					
			txt+="<dl class='right_events'>";
				txt+="<dd>";
					txt+="<dl class='right_smallbox_main'>";
						txt+="<dt class='right_smallbox_main_ttl'>Related Articles</dt>";
						txt+="<dd class='right_smallbox_main_ttl_dd'>";
							txt+="<u>";
								txt+="<a href='http://www.profmax.com/pbs/blogs/2004/04/30/facts_about_kanpur/facts about kanpur.aspx' target=_blank>Facts About Kanpur</a>";
							txt+="</u>";
							txt+="<br/><br/>Kanpur is the ninth most populous city in India and the most populous within the state of Uttar Pradesh.<br/><br/>";
							txt+="<u>";
								txt+="<a href='http://www.profmax.com/pbs/blogs/2004/04/30/flight_and_transportation_for_kanpur/flight and transportation for kanpur.aspx' target=_blank>Flight Details for Kanpur</a>";
							txt+="</u>";
							txt+="<br/><br/>Air India (formerly Indian Airlines) is running a regular daily flight using a 48-seater.<br/><br/>";
						txt+="</dd>";
						txt+="<dd><br/></dd>";
						txt+="<dd class='right_smallboxbottom'></dd>";
					txt+="</dl>";
				txt+="</dd>";
			txt+="</dl>";

            document.getElementById('related_articles_wrapper').innerHTML=txt ;
        }
        else
        {
            alert("unable to load web page.");
        }
    }    
    catch(er)
    {
        alert("unable to load web page.");
    }  
}