function goTo(strLocation) {
	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;
		}
	}
}

