
//APPLY TOP FRAMESET

var parentFrame = String(window.parent.frames[0]);
//document.write(parentFrame);
var thisUrl = String(document.location);
var redirTo = "http://cerberus/ogp/newweb/index.asp?main="+thisUrl;

if(thisUrl.indexOf("ogp.org.uk") != -1){
redirTo = "http://www.ogp.org.uk/index.asp?main=" + thisUrl;
}

if (parentFrame == "undefined"){
document.location = redirTo;
}

