function assignParentFieldValue( field, value ) {
	parent.document.getElementById(field).value = value;
}
function assignFieldValue( field, value ) {
	document.getElementById(field).value = value;
}
function confirmAction(message,url) {
	var answer = confirm(message);
	if (answer!="0") {
		window.location = url;
	}
}
function popupStartloc()
{
	var site = "/community/chooselocation.php";
	var w = 780;
	var h = 780;
	var x = screen.availWidth/2-w/2;
	var y = screen.availHeight/2-h/2;
	var popupWindow = window.open(
		site,'choose_location',
		'width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',toolbar=no,scrollbars=no,resizable=no'
	);
	return false;
}
function updateSearchform()
{
	var lat = document.getElementById("gmaps_lat").value;
	var long = document.getElementById("gmaps_long").value;
	opener.document.getElementById("gmaps_lat").value = lat;
	opener.document.getElementById("gmaps_long").value = long;
}