
function url(url, title){
	if(title != null){
		window.open(url, title);
	}else{
		location.href=url;
	}
}
