/*

Javascript utility functions,
Copyright (c) maintained by Stop That Astronaut 2001-2004
http://www.stopthatastronaut.com/

*/

function recover()	{
	if(self==top)	{
		self.location.href = 'frameset.asp?p=' + self.location.href.replace('http://palace/', '/');
	}
}

function recovernav()	{
	if(self==top)	{
		self.location.href = '/';
	}
}

function switchState(s)	{
	var o = s.options[s.selectedIndex].value;
	if(0!=null)	{
		self.location.href = '/choosestate.asp?stateID='+o
	}
}

function nav(s)	{
	self.location.href = s;
}

function sure()	{
	return confirm('Are you sure? \n\nPlease ensure the information you are deleting will not affect other states, who may presently be accessing it.');
}