// javascript auto redirect to new page
// all pages should start with http://www.jt30.com/jt30page
var xurl=window.location.href;
turl=xurl.substring(0,28);
if (turl=="http://www.jt30.com/jt30page") {
	xurl="http://www.harpamps.com"+xurl.substring(28);
	window.location=xurl;
}

