/***
 * Michael Woods
 * NJSPB, 2007
 ***/
function goto(location, target)
{
	switch (arguments.length) {
		case 1:
			window.location.assign(location);
			break;
		case 2:
			window.open(location, target, '', false);
			break;
	}
}
