// JavaScript Document
function openWin( winHeight, winWidth, title, picSrc ){
    windowprops = "left=0,top=0,resizable=1,directories=0,toolbar=0,menubar=0,scrollbars=0,dependent=1";
    text = "<html><head><title>" + title +"</title></head>";
        text += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor='black'";
    text += "><center><img src='" + picSrc + "' ";
    text += "width=" + winWidth  + " height=" + winHeight + " border=0 alt='FAQ Pix' hspace=0 vspace=0>";
    text += "</center></body></html>";
    newWin = window.open('', 'FAQPix', windowprops);
        newWin.focus();
    newWin.resizeTo(winWidth+10, winHeight+52);
    newWin.document.open();
    newWin.document.write(text);
    newWin.document.close();
}
