// JavaScript Document
function cpurch() {
	if(confirm("Purchase Confirmation\n\n Are you sure you want to submit this purchase?")) {
		return true;
	} else {
		return false;
	}
}

function noSpm(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}
