/* Creds till LaSSe--@Quakenet för detta grymma scriptet, det tar t.o.m självmord! */

function newWindowPop(imageName,imageID,imageWidth,imageHeight,topPos,leftPos)
{
newPop = window.open("","newPop","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,width="+imageWidth+",height="+imageHeight+",top="+topPos+",left="+leftPos+"");
newPop.document.open();
newPop.document.write("<html><head><title>"+imageName+"</title></head><body bgcolor='#ffffff' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onBlur='self.close()'><img src="+imageID+" width="+imageWidth+" height="+imageHeight+" alt="+imageName+">");
newPop.document.write("</body></html>");
newPop.document.close();
newPop.window.focus();
}
