function helpPage(page,w,h) {
	// opens help windows
	window.open('/help/'+page+'.html','','width='+w+',height='+h+',scrollbars,resizeable');
}

function makeMail(recip,visi,subject) {
	if (subject==undefined) {
		subject='';
	}
	if (visi==undefined) {
		visi=recip+'@pro-marketer.com';
	}
	document.write('<a href="mailto:'+recip+'@pro-marketer.com?subject='+subject+'">'+visi+'</a>');
}