<!--
var temp;
function redirect()
{
temp = window.setInterval("redirectpage()",7000); // Set the Time  Interval Here.
}
function redirectpage()
{
window.location = "./index-next.htm";
}
-->
