/*******************************************************************************
FILE NAME       :redirect.js
DESCRIPTION     :
API DEPENDENCIES:none
*******************************************************************************/

var docoptin = "docoptin";
var redirect = "www.docoptin.com";

var loc = window.top.location.toString();
if (loc.indexOf(docoptin) == -1)
{
	var a = loc.split("://");
	if (a.length == 2)
	{
		var w = a[1].substring(a[1].indexOf("/"), a[1].length);
		u = a[0] + "://" + redirect + w;
		window.top.location = u;
	}
}
