//mailer_script.js

function mailme(name, server){
	str='<a href="mailto:' + name + '@' + server;
	str+= '">';
	str+= name + '@' + server;
	str+='</a>';
	document.write(str);
};

function popup(page){
	window.open('http://secure.mind-over-data.com/completecart/memphisbiotech/department.cfm?departmentID=15','','width=640,height=540,toolbar=no,location=no, resizable=yes, scrollbars=yes, status=yes');
};

function popup_unavailable(page){
	window.open('unavailable.htm','','width=640,height=540,toolbar=no,location=no, resizable=yes, scrollbars=yes, status=yes');
};
//example usage
//mailme('nigelj','text or graphic to substitute for email','subject','body');
//
