function email(name,address,ext,subject) { var link = "mailto:" + name + '@' 
+ address + "." + ext + "?subject=" + subject; window.location.href = link; } 

function redirect(page) { window.location.href = page; }
