function writeLink(id){

var name = document.getElementById("customer_name_"+id).value;
var contact = document.getElementById("customer_contact_"+id).value;
var tickets = document.getElementById("num_tickets_"+id).value;
var date = document.getElementById("f_date_"+id).value;
var title = document.getElementById("order_title_"+id).innerHTML;

var message = "Please review the information below for correctness, and edit if necessary"+
"%0A YOUR RESERVATION REQUEST IS NOT SENT UNTIL YOU CLICK 'SEND' ON THIS MESSAGE%0A%0A%0A%0ARESERVATION:%0A";
var link = "mailto:boxoffice@powpac.org?subject=Ticket Reservation Request for "+title+" &body="+message+"Please reserve "+tickets+" tickets for "+title+" on "+date+".%0A Name: "+name+"%0ATelephone: "+contact+"."; 

document.getElementById("link_"+id).href=link;

}

