function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop,picOpen) {
    newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop+",scrollbars=no");
    newWindow.document.open();
    newWindow.document.write('<html><head><title>'+alt+'</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
    
    newWindow.document.write('<img src='+imageName+' width="'+imageWidth+'" height="'+imageHeight+'" border="0" onClick="window.close();">');
    newWindow.document.write('</body></html>');
    newWindow.document.close();
}

function openPictureWindow_FeverX(wwwAddress,imageName,imageWidth,imageHeight,alt,posLeft,posTop,picOpen,target) {
    newWindow = window.open("",target,"width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop+",scrollbars=no");
    newWindow.document.open();
    newWindow.document.write('<html><head><title>'+alt+'</title><meta http-equiv="imagetoolbar" content="no"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
    newWindow.document.write('<img src="http://'+wwwAddress+'/'+imageName+'" width="'+imageWidth+'" height="'+imageHeight+'" border="0" onMouseOver="style.cursor=\'hand\';" onClick="opener.open(\''+picOpen+'\',\'_top\'\,\'\'); window.close();">');
    newWindow.document.write('</body></html>');
    newWindow.document.close();
}

