function openImage(w,h,i){
   openWindow=window.open("", "newwin", "height="+((h*1)+30)+", width="+((w*1)+30)+",toolbar=no,scrollbars=no,menubar=no,left=0,screenx=0,top=0,screeny=0");
   openWindow.document.write("<head><title>Robison Art</title></head>");
   openWindow.document.write("<body bgcolor='#000000' leftmargin='0' topmargin='0'><table width='100%' height='100%' border='0'><tr><td height='100%' width='100%' align='center' valign='center'><img src="+i+"></td></tr></table></body>");
   openWindow.document.close();
}