function expansionReps(name)
{

     var temp = new Array();
     temp = name.split(','); 

     document.getElementById("expRep").innerHTML="&nbsp;&nbsp; <strong>Contact:</strong>&nbsp;&nbsp; <a href='mailto:" + temp[1] + "?subject=New Konica Minolta Full Line Dealer Request'>" + temp[0] + "&nbsp;-&nbsp;" + temp[1] + "</a>";
     document.getElementById("expRep").style.visibility="visible";             
                       
}