function showhideprompt(which) {
var el = document.all ? document.all('emailprompt') :
document.getElementById ? document.getElementById('emailprompt') : null;
if (el && el.style) el.style.visibility = (which) ? 'visible' : 'hidden';
if (!which) document.forms[0].email.value = '';
}
