//testimonials_wrapper

function fill_testimonials_wrapper_div_for_testimonials_through_js(){
    try
    { 
        var Target = document.getElementById('testimonials_wrapper');
        if (Target != null){                
			var txt="";					
			txt+="<dl class='left_events'>";
				txt+="<dd>";
					txt+="<dl class='left_smallbox_main'>";
						txt+="<dt class='left_smallbox_main_ttl'>Testimonials</dt>";
						txt+="<dd style='PADDING-RIGHT: 10px; PADDING-LEFT: 10px; text-align:left;'>";
							txt+="Satyam and Profmax, together we see a long term relationship. The involvement of Profmax in the completion of design and development was crucial to our success.";
							txt+="<br/><br/>The quality processes, interim delivery methodology, reliability of delivery to time and cost were all fundamental improvements introduced by Profmax.  I've not worked with a better development team.<br/><br/>";
							txt+="<strong>Amit Gupta </strong><br/>Head Program Management <br/>Satyam";
						txt+="</dd>";
						txt+="<dd class='left_readmore'>";
							txt+="<a href='http://www.profmax.com/pbs/about_us/clients/testimonials/testimonials.aspx'>More Testimonials...</a>";
						txt+="</dd>";
						txt+="<dd class='left_smallboxbottom'></dd>";
					txt+="</dl>";
				txt+="</dd>";
			txt+="</dl>";

            document.getElementById('testimonials_wrapper').innerHTML=txt ;
        }
        else
        {
            alert("unable to load web page.");
        }
    }    
    catch(er)
    {
        alert("unable to load web page.");
    }  
}



