	function bookmark_it()
	{
		if(navigator.appName == "Microsoft Internet Explorer")
		{
			window.external.AddFavorite(window.location, document.title);
		}
		else if(navigator.vendor == "Apple Computer, Inc.")
		{
			alert("Press Ctrl + D to bookmark this page.");
		}
		else if(navigator.appName == "Netscape")
		{
			window.sidebar.addPanel(document.title, window.location,"");
		}
	}
 
	function popMap(address) {
		poppedMap = window.open(address+"&View=true", "Map", "status=0,toolbar=0,menubar=0,directories=0,resizable=0,scrollbars=0,height=628,width=764");
	}
	

	function popPrint(address) {/*
            var container = document.getElementById("mdr_content_wrapper");
            var innerHTML = escape(container.innerHTML);
            var popupWindow = window.open("", "popupWindow", "status=0,toolbar=0,menubar=0,directories=0,resizable=0,scrollbars=1, width=550, height=475");
            var temp = "<html><head></a><link rel='stylesheet' href='/css/style.css' /></head><body style='padding:14px; background-color:#c8dbea;'>" + innerHTML + "</body> </html>";
		

            eval(eval(popupWindow.document.write(unescape(temp))));
            popupWindow.document.close();
            popupWindow.print();*/
			
            var popupWindow = window.open("", "popupWindow", "status=0,toolbar=0,menubar=0,directories=0,resizable=0,scrollbars=1, width=550, height=475");
			popupWindow.document.write("<html><head><link rel='stylesheet' href='/css/styled.css' /><link rel='stylesheet' href='/css/print.css' /></head><body style='padding:14px; background-color:#c8dbea;'>" + $(".content-wrapper").html()+ "</body> </html>");
			popupWindow.document.close();
			popupWindow.print();
	}