function charFromCharCode (charCode)
{
	return unescape('%' + charCode.toString(16));
}

function  message(yyyy)
{
//	var message = " Copyright 1995-"+yyyy+" \n DOMARO Holdings HK"; 
	var copy_right = charFromCharCode(169);
	//var message = " This site is protected by copyright and trademark laws under EU and International law.\n All rights reserved. "+copy_right+" "+yyyy+" GT Phone Holdings HK Limited ";
	var message = " This site is protected by copyright and trademark laws under EU and International law.\n All rights reserved. "+copy_right+" "+yyyy+" Global Termination Corporation ";
	alert(message);
}//function

function click(e)
{
	if (document.all) 
	{ 
		if (event.button == 2) 
		{
			Today = new Date(); 
			yyyy = Today.getYear(); 
			message(yyyy); 
			return false;
		}
	}//if
	else if (document.layers || (document.getElementById && !document.all)) 
	{
		if (e.which == 2 || e.which == 3) 
		{
			Today = Date(); 
			yyyy = Today.substr(11,4);
			message(yyyy);
			return false;
		}
	}//else
}//function

if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown = click; }
else{ document.onmouseup = click; }
document.oncontextmenu = new Function("return false")
