// JavaScript Document


function navigateTo (url, target) {
	if ( target == undefined ) { target = self }
	if ( name == undefined ) { name = '' }
	if ( target == self ) {
		document.location.href = url;
	} else {
		window.open(url)
	}
}
