// JavaScript Document

<!-- Begin
function supportrequest(ref)
{
//alert("called");
sendto = "yume_publishers@yume.com";
subject = "ACE Request";
br = escape('\r');
tab = escape('\t')

body = "Dear YuMe team, %0A%0A" ;
body += "I am a web publisher and I'd like to learn more about YuMe's ACE Ad Platform. Please contact me as soon as possible to discuss how I can simplify my ad operations and generate more revenue as an ACE Platform user.%0A%0A" ;
body += "My contact information is below:%0A";
body += "Name:%0A" ;
body += "Company:%0A" ;
body += "Web site address:%0A" ;
body += "E-mail:%0A";
body += "Phone:%0A" ;
body += "Thank you.";
//alert('\"mailto:' + sendto + '?subject=' + subject + '&body=' + body + '\"');
ref.value=sendto;
ref.href='mailto:'+ sendto  +'?subject=' + subject + '&body=' + body;
//window.location.reload( true );
}

