// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function warning_popup(county, name, text) {
	popUp = window.open('about:blank', name, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=450,height=550,left=(('+screen.width+'-450)/2), top=(('+screen.height+'-450)/2)');
	popUp.document.writeln('<html><head><title>'+county+' - '+name+'</title></head><body>');
	popUp.document.writeln('<center>'+county+' - '+name+'</center><br /><br />');
	popUp.document.write(text);
	popUp.document.writeln('<br /><br /><center><a onclick="self.close()">Close Window</a></center>');
	popUp.document.close();
}