﻿//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+="Sammi, has been using inventory management ERP solution provided by Profmax, for over a year. It is an integral part of our business and has greatly improved our inventory tracking and customer relationships since we have installed it.";
							txt+="<br/><br/>We were also able to integrate our existing accounting system with this Inventory ERP. This proves to be a real time saver and is a great asset to our accounting duties.The staff at Profmax systems is very easy to work with, professional, and courteous.We are truly enjoying our Inventory ERP and would recommend it to other companies.<br/><br/>";
							txt+="<strong>Mr K. Saini </strong><br/>AGM <br/>Sammi SoundTech";
						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.");
    }  
}


