function PopChat() {
	ChatWindow = window.open(
		'/chat/index.php',
		'AEGONhitelChat',
		'status=1,toolbar=0,titlebar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,width=700,height=500,top=100,left=100'
	);
	ChatWindow.focus();
}

function ShowCounty(obj){
	document.getElementById(obj).style.visibility='visible';
}

function HideCounty(obj){
	document.getElementById(obj).style.visibility='hidden';
}

function OpenDocDown(id, container){
	if (typeof(container)=="undefined") var container = 'doclist';
	if ($(id) && $(container)) {
		var ar = $(container).select('ul');
		if ($(id).visible()) {
			$(id).hide();
		} else {
			for (i=0; i<ar.length; i++) $(ar[i]).hide();
			$(id).show();
		}
	}
}

function changeUrl(id) {
	var redirect;
	redirect = document.getElementById(id).value;
	document.location.href = redirect;
}