
if(!window.CDA) {
	CDA=new Object();
} // end if

if(!window.CDA.Email) {
	CDA.Email=new Object();

} // end if
	
	CDA.Email.show = function(qs, showInline, inlineParent) {
		
		if (!showInline) {
			var popup = new DivPopup(460, 380);
			popup.show();			
			this.makeEmailIFrame(qs, popup.contentDiv)	
			popup.addContent();
		} else {
			this.makeEmailIFrame(qs, inlineParent)	
		} // end if		
	} // end method
	
	CDA.Email.makeEmailIFrame = function (qs, parent) {
		var nestedIFrame = new IFrameElem();		
		nestedIFrame.iframeId="ifmEmailForm";
		nestedIFrame.parent = parent;	
		nestedIFrame.makeIFrame();
		nestedIFrame.iframeSrc = "nested_contactus.php?"+qs;
		nestedIFrame.show();	
	} // end method
	
	