

function goTo(strLocation){
	if (document.all) {
		if (event) {
			event.cancelBubble = true;
		}
	}
	
	if (document.forms.navigationForm) {
		if (strLocation.indexOf("javascript:") > -1) {
			eval(strLocation);
		} else {
			document.forms.navigationForm.action = strLocation;
			document.forms.navigationForm.submit();
		}
	} else {
		if (strLocation.indexOf("javascript:") > -1) {
			eval(strLocation);
		} else {
			document.location = strLocation;
		}
	}
}

