function send_mail() {
	var cr = "%0D%0A";
	html = document.mail_form.name.value + " " + cr;
	html += " [Strengthening of foundations] = " + document.mail_form.rep2.value + " " + cr + cr;
	html += " [External plastering] = " + document.mail_form.rep3.value + " " + cr + cr;
	html += " [External painting] = " + document.mail_form.rep4.value + " " + cr + cr;
	html += " [External insulation of walls from moisture] = " + document.mail_form.rep5.value + " " + cr + cr;
	html += " [Re-building of new room] = " + document.mail_form.rep6.value + " " + cr + cr;
	html += " [Breaking through and demolition of wall] = " + document.mail_form.rep7.value + " " + cr + cr;
	html += " [Building of new wall, partition of room] = " + document.mail_form.rep8.value + " " + cr + cr;
	html += " [Repair (replacement) of roof] = " + document.mail_form.rep9.value + " " + cr + cr;
	html += " [Replacement – installation of new doors] = " + document.mail_form.rep10.value + " " + cr + cr;
	html += " [Replacement – installation of windows ( new joinery)] = " + document.mail_form.rep11.value + " " + cr + cr;
	html += " [Putting of cornices] = " + document.mail_form.rep12.value + " " + cr + cr;
	html += " [Internal insulation of walls] = " + document.mail_form.rep13.value + " " + cr + cr;
	html += " [Internal plastering of walls] = " + document.mail_form.rep14.value + " " + cr + cr;
	html += " [Internal painting] = " + document.mail_form.rep15.value + " " + cr + cr;
	html += " [Repair of ceiling or building a new ceiling] = " + document.mail_form.rep16.value + " " + cr + cr;
	html += " [New floor] = " + document.mail_form.rep17.value + " " + cr + cr;
	html += " [New bathroom] = " + document.mail_form.rep18.value + " " + cr + cr;
	html += " [Putting of terracotta, faience] = " + document.mail_form.rep19.value + " " + cr + cr;
	html += " [Putting of wooden paneling] = " + document.mail_form.rep20.value + " " + cr + cr;
	html += " [Repair of water-supply installation] = " + document.mail_form.rep21.value + " " + cr + cr;
	html += " [Repair of electric fittings] = " + document.mail_form.rep22.value + " " + cr + cr;
	html += " [Building (repair ) of fence] = " + document.mail_form.rep23.value + " " + cr + cr;
	html += " [Installation of air-conditioning] = " + document.mail_form.rep24.value + " " + cr + cr;
	html += " [Putting of satellite TV device] = " + document.mail_form.rep25.value + " " + cr + cr;
	html += " [Other activities ( not listed above)] = " + document.mail_form.rep25.value;
	
   window.location = "mailto:firma.bg@abv.bg?subject=proba&body=" + html;
}

  
  
