// Popup window
var popupwin = null;
function popup(url,props) {
	if (!props) props = "width=600,height=500,scrollbars=yes,resizable=yes";
	popupwin = window.open(url,"popupwin",props);
	return false;
}
function doEmail(e) {
	e+="@" + "kennoncraver.com";
	document.write("<a href=\"mailto:" + e +"\">");
	document.write(e);
	document.write("</a>");
}

function doDomEmail(e,d,n) {
	e+="@" + d;
	document.write("<a href=\"mailto:" + e +"\">");
	if (n) {} else {n=""};
	if (n=="") n=e;
	document.write(n);
	document.write("</a>");
}
