
// Javascript Source File
// Created by Matt Magurany & Adam Carr, Housing & Food Services Marketing and Communications

/***********************************************************************************
/* use this fucntion if you want to open a new window and dynamically load a photo
/* into it
/* @ret none
/**********************************************************************************/
function newWindow(photo,width,height,title)
{
	var centerX = (screen.width-width)/2; 
	var centerY = (screen.height-height)/2; 
	var adWindow = window.open('','_blank','width='+width+',height='+height+',top='+centerY+',screenY='+centerY+',left='+centerX+',screenX='+centerX);
	adWindow.document.write('<HTML><HEAD><TITLE>'+title+'<\/TITLE><\/HEAD><BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0><IMG WIDTH='+width+' HEIGHT='+height+' SRC="../../HTML/scripts/%27+photo+%27" ALT="'+title+'"><\/BODY><\/HTML>')
	adWindow.document.close()
	adWindow.focus()
}

/***********************************************************************************
/* use this fucntion if you want to open a previously created page in a new window
/* @ret none
/**********************************************************************************/
function newWindow(page,width,height)
{
	var centerX = (screen.width-width)/2; 
	var centerY = (screen.height-height)/2; 
	StadiumDining = window.open(''+page+'','StadiumDining','width='+width+',height='+height+',top='+centerY+',screenY='+centerY+',left='+centerX+',screenX='+centerX);
	StadiumDining.document.close()
	StadiumDining.focus()
}
