// JavaScript Document
netscape = (navigator.appName.indexOf("Netscape") != -1);
version4 = (navigator.appVersion.indexOf("4.") != -1);

if(netscape||version4){
	ip = "" + GetLocalIPAddress();

	if(ip.indexOf("219.238.9.194")!=-1)
	{
		window.close();	
	}
	if(ip.indexOf("61.148.97.")!=-1)
	{
		window.close();
	}
	
}

function GetLocalIPAddress()
{
    var obj = null;
    var rslt = "";
    try
    {
        obj = new ActiveXObject("rcbdyctl.Setting");
        rslt = obj.GetIPAddress;
        obj = null;
    }
    catch(e)
    {
        //Òì³£·¢Éú
    }
    
    return rslt;
}
