function Link(target,url)
{
	target.location.href=url;
}

function CheckFrames()
{
	if ((top != self.parent) || (top == self))
	{
		top.location.href='index.htm';
	}
}