function HCCode()
{
	var link2us = document.getElementById ("link2us");
	link2us.focus();
	link2us.select();
	if (document.all)
	{
		var therange=link2us.createTextRange();
		therange.execCommand("Copy");
		window.status="Contents copied to clipboard";
		setTimeout("window.status=''",1800);
	}

}
