<!--

function showFotosetEmailDialog(p_fotosetNum, p_fotosetTitle) {
	var emailDialogElement = getObject('emailDialog');
	emailDialogElement.style.display = 'block';

	var emailDialogHeaderElement = getObject('emailDialogHeader');
	emailDialogHeaderElement.innerHTML = 'Email this photo set to';
	
	var custNumElement = getObject('custNum');
	if (custNumElement != null)
		custNumElement.value = "";

	var custNameInputElement = getObject('custNameInput');
	if (custNameInputElement != null)
		custNameInputElement.value = '';

	var contactListSpanElement = getObject('contact_list_span');
	if (contactListSpanElement != null)
		contactListSpanElement.style.display = 'none';

	var subjectElement = getObject('subject');
	subjectElement.value = 'Link to woodpics photo set # ' + p_fotosetNum + ' - ' + p_fotosetTitle;
	
	var emailLink = 'http://woodpics.trestlewood.com/servlet/TWQueryServlet?fotosetNum=' + p_fotosetNum;
	var messageElement = getObject('message');
	messageElement.value = 'To view photo set #' + p_fotosetNum + ' (' + p_fotosetTitle + ') on woodpics, please visit the following URL: ' + emailLink;
}

var yui_fotosetNumArray = new Array();
function addYuiListenersFotosetEmail() {	
	for (x in yui_fotosetNumArray) {
		var clickableElement = 'emailfs_' + yui_fotosetNumArray[x];
		YAHOO.util.Event.addListener(clickableElement, 'click', YAHOO.example.container.emailDialog.show, YAHOO.example.container.emailDialog, true);
	}
}

function enableCustNumField() {
	var custNumElement = getObject('custNum');
	custNumElement.readOnly = false;
}


//-->