//*these functions control the popup windows for the entire site. 

//The script should be sourced in the head of the document between open and closed '<script>' tags 
//if you need to add/modify these window functions, please do so here as you would w/ styles in a css document *//
//List of window functions to date 7/10/2003
//functions to date include:
// openWin(url) -tour window function
// openWin2(url) -map/directions (kirklandkitchen.html) window function 
// openWin3(url) (sessionhelp.html)window function 
// openWin4(url) (menudetail.html) window function from schedule/menu.html
// openWin5(url) (routing.html)window function from payment2.html 
//-------------------------window functions begin here-----------------------------------------//
/* use this function to open the tour window from footer every page of the site
// be sure to specify openWin() at the link level of each page*/

//begin tour window function
function openWin(url)
{
	subWin=window.open(url,'subWin', 'toolbar=no,width=550,height=370,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
}     

//end tour window function

//* use this function to open the map(s) w/directions 
//be sure to specify openWin2()at the link level of the page *//

function openWin2(url)
{
	subWin=window.open(url,'subWin', 'toolbar=no,width=430,height=580,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
} 

//end map window function

// *use this function to open sessionhelp.html 
//be sure to specify openWin3()at the link level of the page  *//

function openWin3(url)
{
	subWin=window.open(url, 'subWin', 'toolbar=no,width=320,height=450,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no');
} 
//* end sessionhelp.html function *//

//*use this function to open menudetail page(s) 
//be sure to specify openWin4()at the link level of the page*//
function openWin4(url)
{
	subWin=window.open(url, 'subWin', 'toolbar=no,width=450,height=580,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no');
} 
//*end menudetail function*//
//*use this function to open routing.html 
//be sure to specify openWin5()at the link level of the page*//
function openWin5(url)
{
	subWin=window.open(url,'subWin', 'toolbar=no,width=320,height=380,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no');
}
//*end routing page function*//

