/*
	OpenPopupCard() - for "Listings" page
*/
function OpenPopupCard(i) {
	window.open('popup_card.php?sp=print&i=' + i, 'Restaurant_Contact_Card', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
	//window.open('popup_card.php?sp=print&i=' + i, 'Restaurant_Contact_Card', 'status=yes,toolbar=yes,scrollbars=yes,titlebar=yes,menubar=yes,resizable=yes,width=640,height=480,directories=no,location=yes');
}

/*
	ShowHide() - for "Featured" page
*/
var lastShow = 0;

function ShowHide(show, hide) {
	// hide all
	for(var i=1; i <= hide; i++) {
		document.getElementById('city' + i).style.display = 'none';
	}
	if(lastShow != show) {
		// show one
		document.getElementById('city' + show).style.display = '';
		lastShow = show;
	} else {
		lastShow = 0;
	}
}

