﻿//替换页面连接脚本
function onreadystatechange() {
    if (document.readyState == "complete") {
        activeHref();
        setTimeout("onreadystatechange()", 3000);
    }
    else {
        activeHref();
        setTimeout("onreadystatechange()", 300);
    }
}
function activeHref()
{
	var sHref="";
	var sHrefSplits = parent.location.hostname.split('.');
	if (parent.location.hostname.indexOf(".studyez.com")<=0)
	{
		sHref=sHrefSplits[sHrefSplits.length-3] + "." + sHrefSplits[sHrefSplits.length-2] + "." + sHrefSplits[sHrefSplits.length-1];
	}
	else
	{
		sHref = "http://" + sHrefSplits[0] + ".";
	}
	var h=document.links; 
	var len=h.length;
	for(i=0;i<len;i++){
		if(h[i].href == null || h[i].href.length <= 1)
		{
			continue;
		}
		else if(h[i].href.indexOf("www.studyez.com")>=1)
		{
			
			if (parent.location.hostname.indexOf(".studyez.com")<=0)
			{
				h[i].href=h[i].href.replace('http://www.studyez.com',"http://" + sHref);
			}
			else
			{
				h[i].href=h[i].href.replace('http://www.',sHref);
			}
			continue;
		}
		else if(h[i].href.indexOf("www.xypeixun.com")>=1)
		{
			if (parent.location.hostname.indexOf(".studyez.com")<=0)
			{
				h[i].href="http://" + sHref + "/mianshou/";
			}
			else
			{
				h[i].href=sHref + "mianshou.studyez.com";
			}
			continue;
		}
		else if(h[i].href.indexOf("baoming.xypeixun.com")>=1)
		{
			h[i].href=sHref + "mianshou.studyez.com/payment";
			continue;
		}
		else if(h[i].href.indexOf("//caikuai.studyez.com")>=1 || h[i].href.indexOf("//sikao.studyez.com")>=1 || h[i].href.indexOf("//gongcheng.studyez.com")>=1 || h[i].href.indexOf("//yixue.studyez.com")>=1 || h[i].href.indexOf("//gongwuyuan.studyez.com")>=1 || h[i].href.indexOf("//kaoyan.studyez.com")>=1 || h[i].href.indexOf("//foreign.studyez.com")>=1 || h[i].href.indexOf("//waimao.studyez.com")>=1 || h[i].href.indexOf("//zhiye.studyez.com")>=1 || h[i].href.indexOf("//chengkao.studyez.com")>=1 || h[i].href.indexOf("//exam.studyez.com")>=1 || h[i].href.indexOf("//payment.studyez.com")>=1 || h[i].href.indexOf("//mianshou.studyez.com")>=1)
		{
			if (parent.location.hostname.indexOf(".studyez.com")<=0)
			{
				h[i].href=h[i].href.replace('.studyez.com','.' + sHref);
			}
			else
			{
				h[i].href=h[i].href.replace('http://',sHref);
			}
			continue;
		}
	}
}
var confirmDomain = parent.location.hostname;
if(confirmDomain.indexOf(".studyez.com")<=0 || confirmDomain.split('.')==4 || (confirmDomain != "www.studyez.com" && confirmDomain != "caikuai.studyez.com" && confirmDomain != "sikao.studyez.com" && confirmDomain != "gongcheng.studyez.com" && confirmDomain != "yixue.studyez.com" && confirmDomain != "gongwuyuan.studyez.com" && confirmDomain != "kaoyan.studyez.com" && confirmDomain != "foreign.studyez.com" && confirmDomain != "waimao.studyez.com" && confirmDomain != "zhiye.studyez.com" && confirmDomain != "chengkao.studyez.com" && confirmDomain != "exam.studyez.com" && confirmDomain != "payment.studyez.com" && confirmDomain != "mianshou.studyez.com"))
{
	setTimeout("onreadystatechange()",100);
}
