function popup(imagesrc){
var image=new Image();
image.src=imagesrc;
var NS = (navigator.appName=="Netscape")?true:false;
var w=window.open('','','menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=800, height=600');
var dwidth =  (NS)?w.innerWidth:w.document.body.clientWidth;
var dheight =  (NS)?w.innerHeight:w.document.body.clientHeight;

w.document.open();
w.document.write('<html><body style="background:url('+imagesrc+') no-repeat;"><img src="'+imagesrc+'" onload="window.resizeBy(this.width-('+dwidth+'), this.height-('+dheight+'))" style="display:none" /></body></html>');
w.document.close();
w.focus();
}

function popupdir(imagesrc,loc){
var arr=imagesrc.split('/');
var temp=arr.pop();arr.push(loc);arr.push(temp);
popup(arr.join('/'));
}
