var mypop;
function popup(email) {
var emailbody = email;
 mypop = window.open("","Ruder",'height=190,width=380')
 mypop.document.write('<html><title>Ruder Ware, L.L.S.C.</title><body>') 
 mypop.document.write('Please be advised that contacting Ruder Ware by e-mail does not create an attorney-client relationship. If you contact the firm by e-mail with respect to a matter where the firm does not already represent you, any information which you disclose to us may not be regarded as privileged or confidential.')
 mypop.document.write('<p><p><center><a href="mailto:'+(emailbody)+'">Accept</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:window.close()">Cancel</a>')
 mypop.document.write('</body>')
 mypop.document.write('</html>')
 mypop.document.write('<script type="text\/javascript" language="JavaScript" src="js/emailscramble.js"><\/script>');
 mypop.document.close()
 mypop.focus();
}