function linkTo(url, target){
	if (target != ''){
		window.open (url, target); 
	}else{
		self.location.href = url;
	}
}
