// ###########################################################################################
// ##
// ##	Javescript code for Archers Mate
// ##
// ###########################################################################################

// Error Trapping
window.onerror = fnErrorTrap;
function fnErrorTrap(sMsg,sUrl,sLine) {
	top.window.location = window.location.href='index.php';
}

// Frame Breakout
hlngth = location.host.length;
prnthst = window.parent.location.href.substring(7,hlngth+7);
if (prnthst != location.hostname) {
	top.location.href = window.parent.location.href;
}
