function popup()
{

	var width1 = 300
	var height1 = 160;
	var x = top.window.screenLeft+10;
	var y = top.window.screenTop-50;
	var offsetX = 0;
	var offsetY = 0;
	if (self.innerWidth)
	{
	    offsetX = self.innerWidth;
	    offsetY = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
	    offsetX = document.documentElement.clientWidth;
	    offsetY = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
	    offsetX = document.body.clientWidth;
	    offsetY = document.body.clientHeight;
	}
	x += offsetX/2 - width1/2;
	y += offsetY/2 - height1/2;

	window.open ('legal_disclaimer.html','legal','status=0,toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,height='+height1+',width='+width1+',top='+y+',left='+x+',screenLeft='+x+',screenTop='+y);  
}