var v = "FAU Student"; // Default to FAU Students

function _copy(theSelect)
{
    v = theSelect.value;
}

function validate_emailsubscribe(emailform)
/* This function calls the function to pop up a new HTML page for the email subscription
// postcondition: email html page is displayed
*/
{
    url = "/cdc/template/email_subscribe.php?email=" + emailform.email.value + "&class=" + v;
    popitup(url);
}

function popitup(url)
/* This function creates a new window to display email subscription result
// precondition: url must be valid
// postcondition: email html page is displayed
*/
{
	newwindow=window.open(url,'name','height=160,width=250');
	if (window.focus) {newwindow.focus()}
}

