u = window.location;
m = "The message";
function mailThisUrl(){
good = false
checkEmailAddress(document.eMailer.address)
if (good){
// the following expression must be all on one line...
window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+document.title+" "+u;
}
}
</script>
So heres my problem. I can get the e-mail to open up, with a button, and have the URL in the body, but its the incorrect URL. How can I tell the script to look at a certain frame? When I try things like window.location.mainFrame it says "Undefined". Also, even when I can get a link up, it truncates it, it will not show anything past a & sign.