<!--
function popPhoto(url) {
	photoWin=pb_popUp(url,'photo','N','N','N','N','N','N',244,300);
	photoWin.focus();
}

function popChat(url) {
	chatWin=pb_popUp(url,'chat',0,0,0,0,0,1,244,300);
	chatWin.focus();
}

function setForum(text) {
	if (window.opener.pb_bbinsert) {
		window.opener.pb_bbinsert('[img]'+text+'[/img]');
		self.close();
	}
}

function checkTerms() {
	if (!document.forms['join'].termsagreed.checked) {
		alert('You must agree to the terms of membership before joining');
		return false;
	} else {
		return true;
	}
}

function checkRegion(reg) {

	if (reg.options[reg.selectedIndex].value=='') {
		alert('Please select a specific area within this region');
		reg.selectedIndex=0;
		return false;
	}
}

function reloadSearch(fname) {
	document.forms[fname].elements['act'].value='';
	document.forms[fname].submit();
}

function reloadUserSearch(fname) {
	document.forms[fname].elements['act'].value='searchUsers';
	document.forms[fname].submit();
}
//-->
