function safemail(name, domain, display) {
	displayed=(typeof(display)=="undefined") ? name+"@"+domain : display
	document.write('<a href=mailto:' + name + '@' + domain + '?Subject=%20%20web_request>' + displayed + '</a>');
}
// usage notes:
// <script>safemail("respond","deschenesregnier.com")</script>
// gives respond@deschenesregnier.com complete with href codes


function open_window(theURL, pWidth, pHeight, scroller) { 
	if (scroller == 1) {
		scroll_option = "scrollbars=yes";
	}
	else {
		scroll_option = "scrollbars=no";
	}
	features = "toolbar=no,status=no,menubar=no,resizable=no," + scroll_option + ",width=" + pWidth + ",height=" + pHeight;
	window.open(theURL,'pop_info', features);
}


