/* __________________________________________________________________________ */

function Go(x) {
	if(x == "") {
		return;
	} else {
		document.location.href="/site/" + x;
	}
}

/* __________________________________________________________________________ */

function getFac(x) {
	if(x == "") {
		return;
	} else {
		document.location.href="/facility/" + x;
	}
}

/* __________________________________________________________________________ */

function addContent(x) {
	if(x == "") {
		return;
	} else {
		document.location.href=x;
	}
}

/* __________________________________________________________________________ */

function countrySelector(x) {
	if(x == "") {
		return;
	} else {
		document.location.href='/site/'+x;
	}
}

/* __________________________________________________________________________ */

function switchForum(x) {
	if (x == "") {
		return;
	} else {
		document.location.href="/forum/?forum="+x;
	}
}

/* __________________________________________________________________________ */

function pop(url, target, width, height) {

	popup = window.open(url, target, 'toolbar=no,location=no,scrolling=auto,status=no,menubar=no,scrollbars=yes,resizable=no,width='+(width+42)+',height='+(height+100));
	popup.focus();
}

/* __________________________________________________________________________ */

function mini_pop(url, target, width, height) {

	if ((height+200)>screen.availHeight) {
		height = screen.availHeight-200;
	}

	popup = window.open(url, target, 'toolbar=no,location=no,scrolling=auto,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+(width+42)+',height='+(height+200));
	popup.focus();
}

/* __________________________________________________________________________ */

function confirm_action(message) {

	var agree=confirm(message);

	if (agree)
        return true;
	else
        return false;

}

/* __________________________________________________________________________ */


