function popuppix(imgname,wdth,hght) {
var imgurl = imgname;
var picwidth = wdth;
var picheight = hght;
var winwidth = picwidth + 20;
var winheight = picheight + 60;
pixwin = window.open(imgurl,"pixwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + winwidth + ",height=" + winheight + "");
pixwin.document.writeln("<html><head><title>Armenian Genocide Poster Campaign &copy; 2002-2005 All Rights Reserved</title>");
pixwin.document.writeln("<script language=JavaScript>function onMouseDownHandler(e) { if (e.which==3) { return false; }}function click(e) {if (document.all) {if (event.button==2||event.button==3) {oncontextmenu='return false';}}}if (document.layers) { window.captureEvents(Event.MOUSEDOWN); window.onmousedown=onMouseDownHandler;}document.onmousedown=click;// --> <\/script></head>");
pixwin.document.writeln("<body bgcolor='#FFFFFF' link='#000000' alink='#000000' vlink='#000000' oncontextmenu='return false' ondragstart='return false' onselectstart='return false'>");
pixwin.document.writeln("<center>");
pixwin.document.writeln("<img src='" + imgname + "' width='" + picwidth + "' height='" + picheight + "' border='1'><br><br><font face='verdana,helvetica' size='2'><a href='javascript: self.close();'>Close</a></font>");
pixwin.document.writeln("</center>");
pixwin.document.writeln("</body>");
pixwin.document.writeln("</html>");
pixwin.focus();
}