/*********************************
*	 User defined functions
*********************************/
function fmeExport() {
//    var fmeWin = //window.open("http://inquiry.city.richmond.bc.ca/Website/gisPublic/FME/fmeDownload//.htm","FMEDownload","width=550,height=400,toolbar=yes,status=yes,scrollbars=yes,r//esizable=yes");

	var Win1 = parent.CustFrame;
		Win1.document.open();
		var t = "parent.MapFrame";
	
	Win1.document.writeln('<html><meta http-equiv="Content-Type" content="text/html; charset=' + charSet + '"><HEAD>');
	Win1.document.writeln('</head>');
	Win1.document.writeln('<body bgcolor="#FFFFE1" leftmargin=0 topmargin=0">');
	Win1.document.writeln('<div align="center"><form onsubmit="doBuffer(); return false;">');
	Win1.document.writeln('<table cellspacing="2" cellpadding="0" width=100%>');
	Win1.document.writeln('<tr><td bgcolor="#FFFFE1">&nbsp;</td></tr>');
	Win1.document.writeln('<tr><td bgcolor="#6666cc" align="CENTER"><font style="font-family: Arial; font-size: 16px" color="white"><STRONG>Download</STRONG></FONT></td></tr>');
	Win1.document.writeln('<tr><td ALIGN="CENTER" bgcolor="#EBEBEB"><font style="font-family: Arial;font-size: 11px" color="black">&nbsp;</font></td></tr>');
	Win1.document.writeln('<tr><td ALIGN="left" ><font style="font-family: Arial; font-size: 12px" color="black">The Download function can be used to download the current contents of the Main Map to a file (for example, a CAD file). The downloaded file can then me modified as desired as you try different scenarios. <p><b>The Download function will be available in the Fee-based GIS Inquiry tool only.</b></p></font></td></tr>');
	Win1.document.writeln('<tr><td ALIGN="center" ><font style="font-family: Arial; font-size: 12px" color="blue">Coming soon!</b></p></font></td></tr>');
 	Win1.document.writeln('</table></div></body></html>');
	Win1.document.close();
	return true;
}

