/* Requires Prototype.js */

function open_browser_info(location){
	$("darkBackgroundLayer").style.display = "";
	createPopup();
	$$('select').invoke('hide');
	new Ajax.Updater('popup_content', path_to_root+'popup/browser_info?location='+location, {});
}

function close_browser_info() {
	closePopup();
	$$('select').invoke('show');
	$("darkBackgroundLayer").style.display = "none";
}
