function Go(){return} // needed for menu 

function mail(recipient) {
	addr = recipient + String.fromCharCode(64) + "mod-soft.com";
	document.write('<a href="mailto:' + addr + '">' + addr + '</a>');
}

function webmaster() {
	document.write('<a href="mailto:support' + String.fromCharCode(64) + 'interprisesoftware.com?subject=Modular site">Send comments</a> about this site.');
}


function PopUp(whichImg) {
	newWindow = window.open("","popwin","titlebar,status,resizable,width=680,height=510");
	if (newWindow!=null) {
		html = "<html><head><title>Modular Software Screen Shot</title></head>";
		html += '<body><img src="' + whichImg + '" alt=""></body></html>';
		newWindow.document.write(html);
		newWindow.document.close();
		newWindow.focus();
	}
}