function go_popup_url(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function f_confirm(msg,url) {
	if(confirm(msg)) {
		location.href = url;
	}
}

function f_msg(msg) {
	window.alert(msg);
}
