//
function PopChatDT( cidade, bairro, origem )
{
	var popchat = window.open(	"http://www.mrv.com.br/corretores/chat/default.asp?cidade=" + cidade + "&bairro=" + bairro + "&origem=" + origem, 
								"Pop_Chat", 
								"top=25,left=50,width=500,height=560,scrollbars=no,resizable=yes" );
}

//
function openPhoto( url , width , height  )
{
	var scrolls = (  width > 750 || height > 600 ) ? "yes" : "no";
	window.open( url , "popup" ,"width=" + width + ",height=" + height + ",resizable=yes,scrollbars=auto");
}

//
function openMapa()
{
	$('#trigger_map').trigger('click');
}	

//
$(function()
{
	$("#trigger_map").fancybox({
		'zoomOpacity': true,
		'zoomSpeedIn': 500,
		'zoomSpeedOut': 500,
		'overlayOpacity': 0.75,
		'frameWidth': 530,
		'frameHeight': 400,
		'callbackOnClose': function () {
		    $("#fancy_content").empty();
		 } 

	});
	
	// Resize
	var win = $(window),
		minHeight = 600,
		flash = $('#flash'),
		resizeHandler = function(e)
		{
			var winHeight = win.height(),
				newHeight = ( winHeight < minHeight ) ? (minHeight + 'px') : ('100%');
			
			flash.height( newHeight );
		};
			
	win.resize(resizeHandler);
	resizeHandler();
});
