function EmailPage(doctitle,trackback) 
{
	var title = doctitle;
        title = title.replace(/\'/g,"");
	var subj = "mrdamian.com - "+title;
	subj = subj;
	var bodyTxt = "Check this out: " + title + " " + trackback + "";
	bodyTxt = escape(bodyTxt);
	document.writeln("<a onMouseOver=\"window.status='E-Mail this story'; return true\" onMouseOut=\"window.status=' ';return true\" onFocus=\"window.status='Recommend this story';return true;\" onBlur=\"window.status=' ';return true;\" href='mailto:\?subject=" + subj + "\&body\=" + bodyTxt + "' title=\"Email this story.\">E-Mail this story</a>");
}



function jumpToPage(form) {
var index;
var URL;
index = form.selectname.selectedIndex;
URL = form.selectname.options[index].value;
if (URL.indexOf(".",2) == -1) {
form.selectname.selectedIndex = 0;
}
else {
form.selectname.selectedIndex = 0;
window.location = URL;
}
}


