function showPage() {
	if(self == top)	{
		document.getElementById('container').style.visibility='visible';
	}
	else {
		top.location=self.location;
	}
}


