/* Toogle text in search field functions
---------------------------------------------------------------- */

function goToUrl(url,target){
	
	// If target has value then show new window, else open normally
	if(url){
		if(target){
			window.open(url);
		}else{
			location.href = url;
		}
	}

}
