//Pop open new image window scrollable
function popImage(newLocation,newpop,w,h) {
    yes = 1;
    no = 0;
	newfeatures = "toolbar=no,status=no,directories=no,location=no,menubar=no,scrollbars=yes,resizeable=yes,width=" + w + ",height=" + h;
    window.open(newLocation,newpop,newfeatures);
}

function popupToFront() {
   window.focus();
}
