var bName = navigator.appName;
var bApp = navigator.appVersion;
var canFocus = "no"
if (bName == "Netscape") canFocus = "yes";
if (bApp.indexOf("MSIE 4.5") != -1) canFocus = "yes";
if (bApp.indexOf("MSIE 5") != -1) canFocus = "yes";
if (bApp.indexOf("MSIE 6") != -1) canFocus = "yes";


		
		
		
	function openMap(thePage){
		thePracticeInfo = window.open(thePage, 'thePracticeInfo', 'width=475,height=460,toolbar=yes,scrollbars=yes,resizable=yes,dependent=yes');
			if (canFocus=="yes") { setTimeout("focusMap();",200); }
		}
		
	function focusMap() {
		window.thePracticeInfo.focus();
		}
		
		
		
		
	

