// This script appears on the MAIN incoming page
// All rights reserved. Contact shyams90@gmail.com

function delayer() {
window.location="http://stevens.edu/iua/new/";
}

function init()
{
var temp=self.location.href.split("?");
var thispage = (temp.length>1)?unescape(temp[1]):"";
if (thispage.length > 2) 
{

if (thispage == 'forced')
{
window.location = 'new/';
}
else
{
window.location = 'new/?' + thispage;
}

// window.location = 'new/?' + thispage;
}
else
{
setTimeout('delayer()', 0100)
}
}







// disables counter if specified in url (?nocount)
if (thispage == 'nocount')
{
var docount = 'no';
}


// Enable below for an alert
// alert('TEST');