///////////////////////////////////////////////////////
// ContactUs edit dialog 

// return true if the dialog returns values
function doContactUsDialog(emailAddrId )
{
	var emailAddrObject = document.getElementById(emailAddrId);
	
	var p = new Object();
	p.emailAddr = emailAddrObject .value;
	
	var v = window.showModalDialog(ContactUsDialogUrl, p, 
		"scroll:no;center:yes;help:no;status:yes;dialogHeight:346px;dialogWidth:465px");
	
	if(v) 
	{
	    emailAddrObject.value = v.emailAddr;
            return true;
	}

	return false;
}


