var newwindow;
function newwin()
{
	var winW = 630, winH = 460;
	if(parseInt(navigator.appVersion)>3)
	{
		if(navigator.appName=="Netscape")
		{
			winW = window.innerWidth;
			winH = window.innerHeight;
		}
		if(navigator.appName.indexOf("Microsoft")!=-1)
		{
			winW = document.body.offsetWidth;
			winH = document.body.offsetHeight;
		}
	}
	var left = (winW - 550)/2;
	if(left < 0) left = 0;
	var top = (winH - 600)/2;
	if(top < 0) top = 0;
	newwindow=window.open('http://www.templetonhonorscollege.com/gallery.html','Gallery','height=600,width=550,left=' + left + ',top=' + top);
	if (window.focus)
	{
		newwindow.focus();
	}
}

if(document.getElementById('newwin1')) {
	document.getElementById('newwin1').onclick=function ()
	{
		newwin();
		return false;
	};
}

if(document.getElementById('newwin2')) {
	document.getElementById('newwin2').onclick=function ()
	{
		newwin();
		return false;
	};
}

if(document.getElementById('gallery-link')) {
	document.getElementById('gallery-link').onclick=function ()
	{
		newwin();
		return false;
	};
}

if(document.getElementById('gallery-link2')) {
	document.getElementById('gallery-link2').onclick=function ()
	{
		newwin();
		return false;
	};
}





