function showPhotoMap()
{
	$('map_photo').setStyle("display", "block");	
	$('map_google').empty();	
}

function showGoogleMap(longitude, latitude)
{
	$('map_photo').setStyle("display", "none");
	$('map_google').innerHTML = "<iframe src=\"/contacts/map/" +  longitude + "/" + latitude + "/print2\" width=\"550\" height=\"600\" scrolling=\"NO\" frameborder=\"0\"></iframe>";
}

function Printout()
{
	if(document.getElementById || document.layers)
	{
		window.print();
	}
}
