// JavaScript Document

window.onload = initAll;

function initAll() {
	try {
		document.getElementById("redirect").onclick = clickHandler;
	} catch(ex) {}
}

function clickHandler() {
	if (this.toString().indexOf("theweddinggenies") < 0) {
								alert("We are not responsible for the content of pages outside The Wedding Genies site");
								}
}