function openimage(image, w, h)
{
	if (!w){
        win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=1,resizeable=1");
		win1.document.open();
		win1.location.href="/popap.php?file="+image;
	}
	else{
        w = parseInt(w) + 20;
        h = parseInt(h) + 30;
	    win1 = window.open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,width="+w+",height="+h);
		win1.document.open();
		win1.location.href="/popap.php?file="+image+"&w="+w+"&h="+h;
	}
}