function tellfrnd(){

				
			var formstr = '<form name="fmfrnd" method="POST">'+
				'<p align="center" class="head_o">Request to be a Dealer</p>'+
				'<div align="center"><div class="field"><label for="uname">Name of Company </label><input type="text" name="company_name" id="company_name" value="" style="width:180px;"></div>'+
				'<div class="field"><label for="uretailer">Retailer/Wholesaler </label><select name="retailer" id="retailer" style="width:187px;" ><option value="">- Please Select - </option><option value="Retailer">Retailer</option><option value="Wholesaler">Wholesaler</option></select></div>' +
				'<div class="field"><label for="uadd">Address </label><input type="text" name="add" id="add" value="" style="align:left; width:180px;"></div>'+
				'<div class="field"><label for="utel">Tel </label><input type="text" name="tel" id="tel" value="" style="align:left; width:180px; "></div>'+
				'<div class="field"><label for="fax">Fax</label><input type="text" name="fax" id="ufax" value="" style="align:left; width:180px; "></div>'+
				'<div class="field"><label for="uemail">Your Email Address </label><input type="text" name="uremail" id="uremail" value="" style="align:left; width:180px; "></div>'+
				'<div class="field"><label for="ucountry">Countries</label><select name="country" id="country" style="width:187px;" ><option value="">- Select Country - </option><option value="Algeria">Algeria</option><option value="Angola">Angola</option><option value="Benin">Benin</option><option value="Botswana">Botswana</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi,257">Burundi</option><option value="Cameroon,237">Cameroon</option><option value="Cape Verde,238">Cape Verde</option><option value="Central African Republic,236">Central African Republic</option><option value="Chad,235">Chad</option><option value="Comoros,269">Comoros</option><option value="Democratic Republic of the Congo,243">Democratic Republic of the Congo</option><option value="Djibouti,253">Djibouti</option><option value="Egypt,202">Egypt</option><option value="Equatorial Guinea,240">Equatorial Guinea</option><option value="Eritrea,291">Eritrea</option><option value="Ethiopia,251">Ethiopia</option><option value="Gabon,241">Gabon</option><option value="Gambia,220">Gambia</option><option value="Ghana,233">Ghana</option><option value="Guinea,224">Guinea</option><option value="Guinea-Bissau,245">Guinea-Bissau</option><option value="Kenya,254">Kenya</option><option value="Lesotho,266">Lesotho</option><option value="Liberia,231">Liberia</option><option value="Libya,218">Libya</option><option value="Madagascar,261">Madagascar</option><option value="Malawi,265">Malawi</option><option value="Mali,233">Mali</option><option value="Mauritania,222">Mauritania</option><option value="Mauritius,230">Mauritius</option><option value="Melilla">Melilla</option><option value="Morocco,212">Morocco</option><option value="Mozambique,258">Mozambique</option><option value="Namibia,264">Namibia</option><option value="Niger,227">Niger</option><option value="Nigeria,234">Nigeria</option><option value="Reunion,262">Reunion</option><option value="Rwanda,250">Rwanda</option><option value="Senegal,221">Senegal</option><option value="Seychelles,248">Seychelles</option><option value="Sierra Leone,232">Sierra Leone</option><option value="Somalia,252">Somalia</option><option value="South Africa,27">South Africa</option><option value="Sudan,249">Sudan</option><option value="Swaziland,268">Swaziland</option><option value="Tanzania,255">Tanzania</option><option value="Togo,228">Togo</option><option value="Tunisia,216">Tunisia</option><option value="Uganda,256">Uganda</option><option value="Zambia,260">Zambia</option><option value="Zimbabwe,263">Zimbabwe</option></select></div>' +
				'<div class="field"><label for="pmsg">Comment </label><TEXTAREA name="msg" id="msg" rows="5" style="width:180px;"></TEXTAREA></div></div>'+'</form>';
			


				jqistates = {
					state0: {
						html: formstr,
						focus: 1,
						buttons: { Close:false, Send:true },
						submit: function(v, m, f){
							var e = "";
							m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });
							
							if (v) {

								if(f.company_name=="")
									e += "Please enter company Name<br />";

								if(f.retailer=="")
									e += "Please enter retailer <br />";

								if(f.add=="")
									e += "Please enter Address<br />";
								
								if(f.tel=="")
									e += "Please enter your telephone number.<br />";

								if(f.fax=="")
									e += "Please enter your fax number.<br />";

								if(f.uremail=="")
									e += "Please enter Your Email Address<br />";

								if(f.country=="")
									e += "Please select country name<br />";
								
								if(f.uremail != "")
								{
									if(f.uremail.indexOf("@")==-1 || f.uremail.indexOf(".")==-1 || f.uremail.indexOf(" ")!=-1)
									{
										e += "Invalid Email Address. Please Enter Your Email Address Again!<br />";
									}
								}
									
								if(f.msg=="")
									e += "Please enter Your Message<br />";
								
								if (e == "") 
								{
										
												var url;
												url="submit_inquiry.php";
												url=url+"?email="+f.uremail+"&cname="+f.company_name+"&ret="+f.retailer+"&add="+f.add+"&tel="+f.tel+"&fax="+f.fax+"&msg="+f.msg+"&country="+f.country;
											
												var xmlHttp;
												try
												{  
												// Firefox, Opera 8.0+, Safari 
													 xmlHttp=new XMLHttpRequest();  
												}
												catch (e)
												{ 
												 // Internet Explorer  
													try
													{    
														xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
													}
													catch (e)
													{    
														try
														{     	
															xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
														}
														 catch (e)
														 {      
															  alert("Your browser does not support AJAX!");
															  return false;  
														 }
													}
												  }
												  xmlHttp.onreadystatechange=function()
												  {
													if(xmlHttp.readyState==4)
													{
														xx=xmlHttp.responseText;
														jQuery.prompt.getStateContent('state1').find('#intmonthlypayment').text(xx);		
														jQuery.prompt.goToState('state1');
													}
												  }
												  xmlHttp.open("Get",url,true);
												  xmlHttp.send(null);	
									
								}
								else{
									jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
								}
								return false;
							}
							else return true;
						}
					},
					state1: {
						html: '<span id="intmonthlypayment"></span>',
						focus: 1,
						buttons: { Back: false, Done: true },
						submit: function(v,m,f){
							if(v)
								return true;
								
							jQuery.prompt.goToState('state0');
							return false;
						}
					}
				};
				
				$.prompt(jqistates);
}

function tellfrnd1(){

				
			var formstr = '<form name="fmfrnd" method="POST">'+
				'<p align="center" class="head_o">Request to be a Africa Partner</p>'+
				'<div style="width:375px;"><div align="center"><div class="field"><label for="uname">Name </label><input type="text" name="username" id="username" value="" style="width:180px;"></div>'+
				'<div class="field" ><label for="uquolification">Qualification</label><input type="text" name="quolification" id="quolification" value="" style="align:left; width:180px;"></div>'+
				'<div class="field" ><label for="unob"  >Number of breastfeeding mothers seen per month</label><br><input type="text" name="nob" id="nob" value="" style="align:left;  width:180px;"></div>'+
				'<div class="field" ><label for="uadd">Address </label><input type="text" name="add" id="add" value="" style="align:left; width:180px;"></div>'+
				'<div class="field" ><label for="utel">Tel </label><input type="text" name="tel" id="tel" value="" style="align:left; width:180px; "></div>'+
				'<div class="field" ><label for="fax">Fax</label><input type="text" name="fax" id="ufax" value="" style="align:left; width:180px; "></div>'+
				'<div class="field" ><label for="uemail">Your Email Address </label><input type="text" name="uremail" id="uremail" value="" style="align:left; width:180px; "></div>'+
				'<div class="field" ><label for="ucountry">Countries</label><select name="country" id="country" style="width:187px;" ><option value="">- Select Country - </option><option value="Algeria,213">Algeria</option><option value="Angola,244">Angola</option><option value="Benin,229">Benin</option><option value="Botswana,267">Botswana</option><option value="Burkina Faso,226">Burkina Faso</option><option value="Burundi,257">Burundi</option><option value="Cameroon,237">Cameroon</option><option value="Cape Verde,238">Cape Verde</option><option value="Central African Republic,236">Central African Republic</option><option value="Chad,235">Chad</option><option value="Comoros,269">Comoros</option><option value="Democratic Republic of the Congo,243">Democratic Republic of the Congo</option><option value="Djibouti,253">Djibouti</option><option value="Egypt,202">Egypt</option><option value="Equatorial Guinea,240">Equatorial Guinea</option><option value="Eritrea,291">Eritrea</option><option value="Ethiopia,251">Ethiopia</option><option value="Gabon,241">Gabon</option><option value="Gambia,220">Gambia</option><option value="Ghana,233">Ghana</option><option value="Guinea,224">Guinea</option><option value="Guinea-Bissau,245">Guinea-Bissau</option><option value="Kenya,254">Kenya</option><option value="Lesotho,266">Lesotho</option><option value="Liberia,231">Liberia</option><option value="Libya,218">Libya</option><option value="Madagascar,261">Madagascar</option><option value="Malawi,265">Malawi</option><option value="Mali,233">Mali</option><option value="Mauritania,222">Mauritania</option><option value="Mauritius,230">Mauritius</option><option value="Melilla">Melilla</option><option value="Morocco,212">Morocco</option><option value="Mozambique,258">Mozambique</option><option value="Namibia,264">Namibia</option><option value="Niger,227">Niger</option><option value="Nigeria,234">Nigeria</option><option value="Reunion,262">Reunion</option><option value="Rwanda,250">Rwanda</option><option value="Senegal,221">Senegal</option><option value="Seychelles,248">Seychelles</option><option value="Sierra Leone,232">Sierra Leone</option><option value="Somalia,252">Somalia</option><option value="South Africa,27">South Africa</option><option value="Sudan,249">Sudan</option><option value="Swaziland,268">Swaziland</option><option value="Tanzania,255">Tanzania</option><option value="Togo,228">Togo</option><option value="Tunisia,216">Tunisia</option><option value="Uganda,256">Uganda</option><option value="Zambia,260">Zambia</option><option value="Zimbabwe,263">Zimbabwe</option></select></div>' +
				'<div class="field" ><label for="pmsg">Comment </label><TEXTAREA name="msg" id="msg" rows="5" style="width:180px;"></TEXTAREA></div></div></div>'+'</form>';
			


				jqistates = {
					state0: {
						html: formstr,
						focus: 1,
						buttons: { Close:false, Send:true },
						submit: function(v, m, f){
							var e = "";
							m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });
							
							if (v) {

								if(f.username=="")
									e += "Please enter Your Name<br />";

								if(f.quolification=="")
									e += "Please enter your quaolification<br />";

								if(f.nob=="")
									e += "Please enter Number of breastfeeding mothers seen per month<br />";

								if(f.add=="")
									e += "Please enter Address<br />";
								
								if(f.tel=="")
									e += "Please enter your telephone number.<br />";

								if(f.fax=="")
									e += "Please enter your fax number.<br />";

								if(f.uremail=="")
									e += "Please enter Your Email Address<br />";

								if(f.country=="")
									e += "Please select country name<br />";
								
								if(f.uremail != "")
								{
									if(f.uremail.indexOf("@")==-1 || f.uremail.indexOf(".")==-1 || f.uremail.indexOf(" ")!=-1)
									{
										e += "Invalid Email Address. Please Enter Your Email Address Again!<br />";
									}
								}
									
								if(f.msg=="")
									e += "Please enter Your Message<br />";
								
								if (e == "") 
								{
										
												var url;
												url="submit_inquiry1.php";
												url=url+"?email="+f.uremail+"&uname="+f.username+"&quolification="+f.quolification+"&nob="+f.nob+"&add="+f.add+"&tel="+f.tel+"&fax="+f.fax+"&msg="+f.msg+"&country="+f.country;
											
												var xmlHttp;
												try
												{  
												// Firefox, Opera 8.0+, Safari 
													 xmlHttp=new XMLHttpRequest();  
												}
												catch (e)
												{ 
												 // Internet Explorer  
													try
													{    
														xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
													}
													catch (e)
													{    
														try
														{     	
															xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
														}
														 catch (e)
														 {      
															  alert("Your browser does not support AJAX!");
															  return false;  
														 }
													}
												  }
												  xmlHttp.onreadystatechange=function()
												  {
													if(xmlHttp.readyState==4)
													{
														xx=xmlHttp.responseText;
														jQuery.prompt.getStateContent('state1').find('#intmonthlypayment').text(xx);		
														jQuery.prompt.goToState('state1');
													}
												  }
												  xmlHttp.open("Get",url,true);
												  xmlHttp.send(null);	
									
								}
								else{
									jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
								}
								return false;
							}
							else return true;
						}
					},
					state1: {
						html: '<span id="intmonthlypayment"></span>',
						focus: 1,
						buttons: { Back: false, Done: true },
						submit: function(v,m,f){
							if(v)
								return true;
								
							jQuery.prompt.goToState('state0');
							return false;
						}
					}
				};
				
				$.prompt(jqistates);
}

function openimage(img)
{ 	
		//alert(img);		
		//o = jQuery.extend({},{ amount:100000, years:15, rate:5 },o);
		var formstr = '<div align="center"> <img src="imuc/' + img + '" height="400" width="500"> </div>';

				jqistates = {
						state0: {
						html: formstr,
						focus: 1,				
						buttons: { Close: false },
						submit: function(v, m, f){
							var e = "";
							m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });

							if (v) {
								if (e == "") 
								{
									document.fmfrnd.submit();
								} 
								else{
									jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
								}
								return false;
							}
							else return true;
						}
					},
					state1: {
						html: 'Monthly Payment: $<span id="intmonthlypayment"></span>',
						focus: 1,
						buttons: { Back: false, Done: true },
						submit: function(v,m,f){
							if(v)
								return true;
							jQuery.ImpromptuGoToState('state0');
							return false;
						}
					}
				};
				
				$.prompt(jqistates);
}
function opencontent(img,desc)
{ 	
		//alert(img);		
		//o = jQuery.extend({},{ amount:100000, years:15, rate:5 },o);
		var formstr = '<div align="left" > <img src="imuc/' + img + '" height="100" width="100"></div>' + '<div align="left" style="width:600px; text-align:justify;">'  + desc +  '</div>';

				jqistates = {
						state0: {
						html: formstr,
						focus: 1,				
						buttons: { Close: false },
						submit: function(v, m, f){
							var e = "";
							m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });

							if (v) {
								if (e == "") 
								{
									document.fmfrnd.submit();
								} 
								else{
									jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
								}
								return false;
							}
							else return true;
						}
					},
					state1: {
						html: 'Monthly Payment: $<span id="intmonthlypayment"></span>',
						focus: 1,
						buttons: { Back: false, Done: true },
						submit: function(v,m,f){
							if(v)
								return true;
							jQuery.ImpromptuGoToState('state0');
							return false;
						}
					}
				};
				
				$.prompt(jqistates);
}
function opencontent1(img,title)
{ 	
		//alert(img);		
		//o = jQuery.extend({},{ amount:100000, years:15, rate:5 },o);
		var formstr = 	'<div align="left" > <img src="imuc/' + img + '" height="100" width="100"></div>' + 
			 		 	'<div align="center" style="text-align:justify;">'  + title +  '</div>' +
						'<div id = "content" align="left" style="width:600px; text-align:justify;"></div>';

			
						var url;
										url="make_desc.php?title="+ title;
														
										var xmlHttp;
										try
										{  
										// Firefox, Opera 8.0+, Safari 
											 xmlHttp=new XMLHttpRequest();  
										}
										catch (e)
										{ 
										 // Internet Explorer  
											try
											{    
												xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
											}
											catch (e)
											{    
												try
												{     	
													xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
												}
												 catch (e)
												 {      
													  alert("Your browser does not support AJAX!");
													  return false;  
												 }
											}
										  }
										  xmlHttp.onreadystatechange=function()
										  {
											if(xmlHttp.readyState==4)
											{
												xx=xmlHttp.responseText;
												document.getElementById('content').innerHTML = xx
											}
										  }
										  xmlHttp.open("Get",url,true);
										  xmlHttp.send(null);






				jqistates = {
						state0: {
						html: formstr,
						focus: 1,				
						buttons: { Close: false },
						submit: function(v, m, f){
							var e = "";
							m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });

							if (v) {
								if (e == "") 
								{
								} 
								else{
									jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
								}
								return false;
							}
							else return true;
						}
					},
					state1: {
						html: 'Monthly Payment: $<span id="intmonthlypayment"></span>',
						focus: 1,
						buttons: { Back: false, Done: true },
						submit: function(v,m,f){
							if(v)
								return true;
							jQuery.ImpromptuGoToState('state0');
							return false;
						}
					}
				};
				
				$.prompt(jqistates);
}
function openmodelcontent(desc)
{ 	
		//alert(img);		
		//o = jQuery.extend({},{ amount:100000, years:15, rate:5 },o);
		var formstr = '<div align="left">'  + desc +  '</div>';

				jqistates = {
						state0: {
						html: formstr,
						focus: 1,				
						buttons: { Close: false },
						submit: function(v, m, f){
							var e = "";
							m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });

							if (v) {
								if (e == "") 
								{
									document.fmfrnd.submit();
								} 
								else{
									jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
								}
								return false;
							}
							else return true;
						}
					},
					state1: {
						html: 'Monthly Payment: $<span id="intmonthlypayment"></span>',
						focus: 1,
						buttons: { Back: false, Done: true },
						submit: function(v,m,f){
							if(v)
								return true;
							jQuery.ImpromptuGoToState('state0');
							return false;
						}
					}
				};
				
				$.prompt(jqistates);
}















