<% 
	// ----- Static JSP redirect -----
	
// UE-164 owner Wendy, review 2016-03-26
	
	// Place near the top of JSP, before any other content output.
	// Assuming the content is migrated, this can usually replace most or all of the JSP content.

	// Start by testing with a temporary redirect:
	response.setStatus(response.SC_MOVED_TEMPORARILY);

	// Once proven, remove the above line and replace with a permanent redirect:
	//response.setStatus(response.SC_MOVED_PERMANENTLY);

	// Send the new location
	response.setHeader("Location","http://ww2.kqed.org/jpepinheart/");
	
	// ----- End static JSP redirect -----
%>