function openMQConnect(sAddress, sCity, sState, sZip) {
	var sQuery = '';
	
	if (sAddress.length>0) {
		sQuery = 'STREETADDRESS=' + sAddress + '&';
	}
	
	if (sCity.length>0) {
		sQuery += 'CITY=' + sCity + '&';
	}
	if (sState.length>0) {
		sQuery += 'STATE=' + sState + '&';
	}
	if (sZip.length>0) {
		sQuery += 'ZIP=' + sZip + '&';
	}
	
	sQuery = sQuery.substring(0,sQuery.length-1);	

	if (sQuery.length>0) {
		var oWin = window.open('http://www.forestcity.net/scripts/mqinterconnect.exe?'+sQuery,'map','scrollbars=no,width=650,height=600');
		oWin.focus();
	}
}

function openMQTrip(sAddress, sCity, sState, sZip) {
	var sQuery = '';
	
	if (sAddress.length>0) {
		sQuery = 'ADDR_DESTINATION=' + sAddress + '&';
	}
	
	if (sCity.length>0) {
		sQuery += 'CITY_DESTINATION=' + sCity + '&';
	}
	if (sState.length>0) {
		sQuery += 'STATE_DESTINATION=' + sState + '&';
	}
	if (sZip.length>0) {
		sQuery += 'ZD=' + sZip + '&';
	}
	
	sQuery = sQuery.substring(0,sQuery.length-1);

	if (sQuery.length>0) {
		var oWin = window.open('http://www.forestcity.net/scripts/mqtripplus.exe?'+sQuery,'directions','scrollbars=yes,status=yes,width=650,height=600');
		oWin.focus();
	}
}