
function openwindow(name, name_pic, w, h)
{
    var hWnd = null;
    var nLeftPos, nTopPos;
    if ( arguments.length == 1 ) {
        nWidth = 100;
        nHeight = 100;
    } else {
        var nWidth = arguments[2];
        var nHeight = arguments[3];
    }

    nLeftPos = Math.round(screen.availWidth/2) - Math.round(nWidth/2);
    nTopPos  = Math.round(screen.availHeight/2) - Math.round(nHeight/2);

    hWnd = window.open(name,null,"height="+nHeight+",width="+nWidth+",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no");
     hWnd.document.write("<html><head><title>");
     hWnd.document.write("</title></head><body>");
     hWnd.document.write("<center>");
     hWnd.document.write('<img alt="'+arguments[1]+'" src="'+arguments[0]+'" />');
     hWnd.document.write('<div style="padding-TOP:5px; FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #797c77; TEXT-ALIGN: center">'+arguments[1]+'</div>');
     hWnd.document.write("</center>");
     hWnd.document.write("</body></html>");

    hWnd.moveTo( nLeftPos, nTopPos );

} // -------------------------------------------------------------------------------------------



