﻿// JScript File
function redirect()
{
    var url = document.location;
    var temp = url.toString();
    var goTo = new Array;
    goTo = temp.split('page=');
    var number = goTo.length - 1;
    if(number > 0)
    {
        frames["contentFrame"].location.href = goTo[number];
        document.getElementById("contentFrame").src = goTo[number];
    }
    if (top.location != self.location) 
    { 
        top.location = self.location.href 
    }
}

