var windowPic = null;

function popImage(sPicURL,imageTitle) { 


	if (windowPic && !windowPic.closed) {
		windowPic.focus();
    }else{
		windowPic = window.open("./popup.html?"+sPicURL, "", "resizable=0,height=200,width=200");
    }
}