function showimage(img, w, h, title){
	newwindow = window.open("","Image", "resize=yes, menubar=no,toolbar=no,location=no,width=" + w + " height=" + h);
	newwindow.document.write("<html><head><title>Kakabeka Falls Community Credit Union - " + title + "</title></head>");
	newwindow.document.write("<body leftmargin='0' topmargin='0'>");
	newwindow.document.write("<center>");
	newwindow.document.write("<IMG height='"+ h + "' width='" + w +"' src='images/");
	newwindow.document.write(img);
	newwindow.document.write("' border='0'>");
	newwindow.document.write("</center></body></html>");
}

//"location,height=h,width=w"