<!--
// page switch for thank you pages
// call via body onload plus url
var where_to = "";
function grefresh(how_long,next_page)
{
where_to = next_page;
	setTimeout("nextpage()",how_long);
}

function nextpage()
{
//alert("go to next step");
	top.location.href = where_to;
}

//-->
