		
		<!--- Google Map print --->
			function printGoogleMap(source, dealerName, dealerPhone, dealerAddress, dealerDirections)
			{
				var params = 'left=50,top=100,width=475,height=500,scrollbars=yes';
				document.getElementById('dealerDetailsPrint').source.value = source;
				document.getElementById('dealerDetailsPrint').dealerName.value = dealerName;
				document.getElementById('dealerDetailsPrint').dealerPhone.value = dealerPhone;
				document.getElementById('dealerDetailsPrint').dealerAddress.value = dealerAddress;
				document.getElementById('dealerDetailsPrint').dealerDirections.value = dealerDirections;
				var newWindow = window.open ("","nissanPrintDirections",params);
				document.dealerDetailsPrint.submit();
			}
			
			function setHtmlFormData( formElementId, data)
			{
				formElementId = "dealerDetailsPrint_" + formElementId
				//window.alert(formElementId);
				//window.alert(data);
				
				if(document.getElementById(formElementId))
				{
					document.getElementById(formElementId).value = data;
				}
			}
			
			function activatePrintGoogleMap()
			{
				var params = 'left=50,top=100,width=475,height=500,scrollbars=yes';
			
				var newWindow = window.open ("","nissanPrintDirections",params);
				document.dealerDetailsPrint.submit();
			}

