// JavaScript Document

function go_to_url(url) {
	window.location = url
}

function go_to_url_blank(url) {
	window.open(url)
}
