function galpop(iname)
{
    var url = path2img + iname;

    if (!newwindow.closed && newwindow.location) {
        newwindow.location.href = 'images.php?iname=' + url;
	}
	else {
		newwindow=window.open('images.php?iname='+url,'name','left=20,top=20,width=700,height=530');
	}
    newwindow.focus();
}

function changeImg(u)
{
    var i = newwindow.document.getElementById("theimage");
    i.src = u;
}

/** this needs to be set **/

function setPath2Img(p)
{
    path2img = p;
}

var path2img = "";
var newwindow = "";
