function goToUrl(url,target){

	// Send to location
	if(target){
		window.open(url);
	}else{
		location.href = url;
	}

}

function showCont(f){
	var obj = document.getElementById(f);
	if(obj){obj.style.display = 'block';}
}