Map = function() {
	HidePrintDiv();
	if(document.getElementById('divMap').style.display == 'block') {
		HideMapDiv();
	} else {
		document.getElementById('divMap').style.display = 'block';
		document.getElementById('divMap').style.overflow = 'visible';
		document.getElementById('divMap').style.height = '';
	}
}
HideMapDiv = function() {
	if(document.getElementById('divMap')) {
		document.getElementById('divMap').style.display = 'none';
	}
	/*
	document.getElementById('divMap').style.overflow = 'hidden';
	document.getElementById('divMap').style.height = '0px';
	*/
}

SetGoogleAdsHeight = function() {
	var iFrames = document.getElementsByTagName('IFRAME');
	for(var i=0;i<iFrames.length;i++) {
		if(iFrames[i].name == 'google_ads_frame' && iFrames[i].width > 300) {
			iFrames[i].height = 45;
		}
	}
}

//AttachEvent('onload','SetGoogleAdsHeight');