
	function confirmAction(query,result) {
		var agree=confirm(query);
		if (agree)
			document.location=result;
		}
		
	function make_email(the_username,the_domain_hint){
		if (the_domain_hint == 'dotcom'){
			var the_domain = '@theystolemybike.com';
		}
		document.write('<a href="mailto:' + the_username + the_domain + '">' + the_username + the_domain + '</a>');
	}
