function clicker(){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
		thediv.innerHTML = "<table width='100%' height='100%' style='text-align:center;margin-left:auto;margin-right:auto;' valign=center><tr><td  width='100%' height='100%' style='text-align:center;'><br><br><br><center><table align=center border=0 cellpadding=0 cellspacing=0  bgcolor=#ffffff width='300' height='150' style='text-align:center;'><tr><td >&#160;</td><td bgcolor=#ffffff  width='260'><br><p align=justify>The web page you are about to visit is not part of the amigot.com website. The site is not under amigot.com control, and amigot.com is not responsible for the information or links you may find there. amigot.com is providing this link only as a convenience.</p><br><br><center><a href='#' onclick='return clicker();' ><b>CLOSE WINDOW</b></a>&#160;&#160;&#160;&#160;<a href='http://translate.google.com/translate?prev=hp&hl=en&js=y&u=http://www.amigot.com&sl=en&tl=es&history_state0='><b>TRANSLATE</b></a></center></td><td>&#160;</td></tr></table></center></td></tr></table>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}

