// JavaScript Document

window.onload = openTable;

function openTable() {
	document.getElementById("redirect").onclick = clickHandler;
}

function clickHandler() {
	if (this.toString().indexOf("astaria") < 0)  {
		alert("We are not responsible for the content outside our site");
	}
	
}
