﻿function LoadCurrentNetWork()
{
	var current_network = "hk2";
	var current_set = document.getElementById(current_network + '_link');
	var current_set_p = document.getElementById(current_network + '_p');
	if(current_set != null && current_set_p != null)
	{
		current_set_p.className = "p1";
		current_set.title = 'This is your current network, in order to obtain faster browsing speed, attempted to choose the other';
		current_set.href = 'javascript:void(0);';
		current_set.target = '_self';
	}
}