

//opens windows on location.php
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//allows the select menu and text field to communicate on email.php
function add_to_field()
{
document.emailer_form.email_to.value=document.emailer_form.email_list.value;
}

