// JavaScript Document
var newwindow;
function sendEmail(url)
{
	newwindow=window.open(url,'emailWindow','height=520,width=350,location=false');
	if (window.focus) {newwindow.focus()}
}

function photoGallery(url)
{
	newwindow=window.open(url,'galleryWindow','height=500,width=485,location=false');
	if (window.focus) {newwindow.focus()}
}

function campusMap(url)
{
	newwindow=window.open(url,'galleryWindow','height=754,width=600,location=false');
	if (window.focus) {newwindow.focus()}
}

function videoPlayer(url)
{
	newwindow=window.open(url,'galleryWindow','height=303,width=340,location=false');
	if (window.focus) {newwindow.focus()}
}

function joinEmailList(url)
{
	newwindow=window.open(url,'galleryWindow','height=365,width=350,location=false');
	if (window.focus) {newwindow.focus()}
}

function fanPage(url)
{
	newwindow=window.open(url,'galleryWindow','height=550,width=560,location=false,menubar=yes,location=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
