// Trinity JavaScript Document

//The following is used to not allow a user to be able to save the photos on the page
//These are the statements to setup for Internet Explorer and Netscape
if (document.all){
}

else if (document.getElementById){
	document.captureEvents(Event.MOUSEDOWN);
}

else if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
} 

//The following is the function that is called that does not allow the user to Right-Click
function mousedown_handler (mouse_event){
	var no_right_click = "Sorry, you are not able to use that function on this page!"
	
	if (document.all){
		//Probably Internet Explorer 4 and later
		if (event.button == 2 || event.button == 3){
			alert (no_right_click);
			return false;
		}
	}
	
	else if (document.getElementById){
		//Probably Netscape 6 and later
		if (mouse_event.which == 3){
			alert (no_right_click);
			return false;
		}
	}
	
	else if (document.layers){
		//Probably Netscape 4
		if (mouse_event.which == 3){
			alert (no_right_click);
			return false;
		}
	}
}

//The following is used to open Engrade in a new fullscreen webpage.
function open_win() 
{
	window.open("http://engrade.com/logout.php", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open the newsletter in a new fullscreen webpage.
function open_news()
{
	window.open("newsletter_files/news.pdf", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open NEW Lutheran in a new fullscreen webpage.
function open_newlhs()
{
	window.open("http://newlhs.com", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open the Registration form in a new fullscreen webpage.
function open_regform()
{
	window.open("forms/RegistrationForm.pdf", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open the Emergency Contact form in a new fullscreen webpage.
function open_ecform()
{
	window.open("forms/EmergencyContact.pdf", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open Mr. Jones' Page in a new fullscreen webpage.
function open_mjp()
{
	window.open("http://sites.google.com/a/greenbaytrinity.org/jonesb/", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open Mr. Jones' Athletic Calendar in a new fullscreen webpage.
function open_sports()
{
	window.open("http://sites.google.com/a/greenbaytrinity.org/jonesb/athletics-calendar", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open Accelerated Reader List in a new fullscreen webpage.
function open_arl()
{
	window.open("forms/AccelRdrList.pdf", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open Spirit Wear Order Form in a new fullscreen webpage.
function open_sw()
{
	window.open("forms/SpiritWear.pdf", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}

//The following is used to open the Photo Gallery in a new fullscreen webpage.
/*function open_photo()
{
	window.open("http://picasaweb.google.com/GBTrinity/KFirehouseFieldTrip2?authkey=Gv1sRgCKuXnrydt7qyswE&feat=directlink", '', 'fullscreen=yes, menubar=yes, toolbar=yes, location=yes, resizable=yes, scrollbars=yes');
}*/