/**
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%
    %% by WPnL:  ||           %%
    %% webmaster ||           %%
    %%     @     ||  November %%
    %% canalfcp  ||           %%
    %%     .     ||  2005     %%
    %%    com    ||           %%
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%

    "wtf is this?"
    don't ask!
*/

function readable(p1, p2, p3, p4) {
  var first = "the@symbol";
  var second = "the.symbol";
  var dest = "mailto:";
  p1 = p1.replace(/^123/, "");
  p2 = p2.replace(/abc$/, "");
  p4 = p4.replace(/qwe$/, "");
  first = first.replace(/^the/, "").replace(/symbol$/,"");
  second = second.replace(/^the/, "").replace(/symbol$/,"");
  window.location = dest+p4+first+p1+second+p2;
}
