function preload(path){
	if (document.images) {
		var img = new Image();
		img.src = path;
		return img;
	}
}

function sendpage(){
if(email = prompt("E-mail Address?","")){
window.location="mailto:"+email+"?subject="+document.title+"&body="+document.location;
}
}