﻿
function FAClicktoCall(IdListing, AgentPhone, ReportData, ReportCode)
{
	FlashClickToCall(AgentPhone);
	DoReport(ReportData, ReportCode);
}

function FAEmailAgent(IdListing, ReportData, ReportCode)
{
	EmailAgent(IdListing, 'idlisting', ReportData);
	//DoReport(ReportData, ReportCode);
}

function FAAgentDirectory(FAPath, ReportData, ReportCode)
{
	DoReport(ReportData, ReportCode);
	top.location.href = FAPath;
}

function FAListingDetail(ListingPath, ReportData, ReportCode)
{
	DoReport(ReportData, ReportCode);
	top.location.href = ListingPath;
}

//initialize

$(function()
{
	if ($("#dialog-wrap").length == 0)
	{
		$(document.body).prepend($('<div id="dialog-wrap"></div>')); // for email agent
	}
});


