﻿// JScript File - Javascript functions common to most pages on site


//used for redirections off the site to prompt users to decide whether or not to leave the site
function leaveSite(url){
    openLGWinBars('/leaving.aspx?sponsorsite=' + escape(url));
}


//opens a large window w/ scroll bars in a seperate pop up
function openLGWinBars(link) {
	linkWindow = window.open(link, "pop", "width=730,height=550,innerWidth=730,innerHeight=550,top=0,left=0,screenX=0,screenY=0,resizable=yes,scrollbars=yes,dependent=yes,menubar=yes,toolbar=yes,location=yes");
	linkWindow.focus();
}

