function alertUser() {
    if (this.href.indexOf('http')==0 && this.href.indexOf('www')==7) {
    	if (this.href.indexOf('fwcs') < 0) {
    		if (this.href.indexOf('fortwayneschools') < 0) {
				return confirm('You are now leaving the Fort Wayne Community Schools web site and entering an external web site outside of our domain.  Fort Wayne Community Schools is not responsible for the content of these sites nor for any advertising therein.  While every effort is taken not to link to sites with inappropriate content, FWCS cannot guarantee that the content will be appropriate when you visit the site. ');
			}
    	}
    }
}
function initPage() {
    var hrefs = document.getElementsByTagName('a');
    for (var i=0,max=hrefs.length; i<max; i++)
        hrefs[i].onclick = alertUser;
}

function GP_popupConfirmMsg(msg) {
	document.MM_returnValue = confirm(msg);
}

function redirect(page){
	window.location=page
}
window.onload = function () { initPage(); };
