<!-- Start


// CHANGE THIS AREA FOR PRINTING YOUR NAME AND ADDRESS IN THE POPUP


var name 		= "Banque Alimentaire Centrale de Hawkesbury Central Food Bank"
var address 		= "57 Main St.West"
var city 		= "Hawkesbury, ON K6A 2H3"
var phone 		= "(613) 506-5060"
var email 		= "info@bach-hcfb.ca"


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON


var close_button 	= "yes"		// CLOSE BUTTON ON/OFF
var slideshow_button 	= "yes"		// SLIDESHOW BUTTON ON/OFF
var print_button 	= "yes"		// PRINT BUTTON ON/OFF


// OTHER OPTIONS YOU CAN CHANGE


var slideshow_width 	= 675		// SLIDESHOW POPUP WINDOW WIDTH
var slideshow_height 	= 475		// SLIDESHOW POPUP WINDOW HEIGHT

var view_width 		= 675		// GALLERY POPUP WIDTH
var view_height 	= 475		// GALLERY POPUP HEIGHT





// YOU DO NOT NEED TO EDIT BELOW THIS LINE
// START SLIDESHOW POPUP CODE




// START SLIDESHOW POPUP


function popUpSlideshow(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+slideshow_width+',height='+slideshow_height+'');");
}



// START GALLERY POPUP


function contact()
{
popwin.document.write('<span class="title">' + name + '<br></span>');
popwin.document.write( address + '<br>');
popwin.document.write( city + '<br>');
popwin.document.write('PHONE: <span class="phonetitle">' + phone + '<BR></span>');
popwin.document.write('E-mail : ');
popwin.document.write(' <A HREF="mailto:' + email + '">' + email + '</a><br>');
}


function popUp(URL) {
var look='toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+view_width+',height='+view_height+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Close Up</title><head>')
popwin.document.write('<link rel=StyleSheet href="corporatestyle.css" type="text/css">')
popwin.document.write('</head>')
popwin.document.write('<body bgcolor="#FFFFFF" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" ><tr><td align="center" colspan="3">')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#000000" style="border-collapse: collapse"><tr><td>')
popwin.document.write('<img src="'+URL+'"><br>')
popwin.document.write('</td></tr></table>')
popwin.document.write('<span class="printonly">')
contact();
popwin.document.write('</span>')
popwin.document.write('</td></tr><tr><td valign="bottom" align="center" class="printhide">')
   if (slideshow_button == "yes") {
popwin.document.write('<br><form action="slideshow.htm" style="margin: 0px"><input type="submit" value="Slideshow" onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" class="button-popups"></form>')
popwin.document.write('</td><td valign="bottom" align="center" class="printhide">')
}
   if (close_button == "yes") {
popwin.document.write('<br><form style="margin: 0px"><input type="button" value="Close Window" onClick=\'self.close()\'  onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" class="button-popups"></form>')
popwin.document.write('</td><td valign="bottom" align="center" class="printhide">')
}
   if (print_button == "yes") {
popwin.document.write('<br><form style="margin: 0px"><input type="button" value="Print Image" onClick=\'window.print()\'  onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" class="button-popups"></form>')
}
popwin.document.write('</td></tr></table>')
popwin.document.write('</body>')
popwin.document.close()
}


// End -->