function popupimg(path,w,h,domain)
{
year = new Date();
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
imwin = window.open('','','toolbar=0,location=0,status=0,scrollbar=0,resizable=0,width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition);
imwin.document.write("<title>Copyright&copy;"+year.getFullYear()+" "+domain+"</title><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><img src="+path+" width="+w+" height="+h+"></BODY>");
}

