// JavaScript Document
/****************************************
* showPopup
* Takes 'imageObj's 'src' attribute to
* use as an option passed to the
* 'popup.html' document so that it can
* display the image at that URL.
****************************************/
function showPopup(imageObj){
	window.open("popup.html?image="+imageObj.src,"new","status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,height=550,width=600");
}