function bbOpenURL(theURL, width, height) {

    LeftPosition = (screen.width)  ? (screen.width-width)/2  : 0;
    TopPosition  = (screen.height) ? (screen.height-height)/2 : 0;
    settings     = 'height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition

    window.open(theURL,'',settings);

    return false;
}

function bbOpenURLscroll(theURL, width, height) {

    LeftPosition = (screen.width)  ? (screen.width-width)/2  : 0;
    TopPosition  = (screen.height) ? (screen.height-height)/2 : 0;
    settings     = 'height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition+', scrollbars=yes'

    window.open(theURL,'',settings);

    return false;
}

function WinOpen(chemin) {
i1 = new Image;
i1.src = chemin;
html = '<HTML><HEAD><TITLE>Diplomat Haber</TITLE></HEAD><BODY bgcolor="#FFFFFF" LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><div align=center><table border=0 width=100% cellspacing=0 cellpadding=0 height=100%><tr><td align=center><div align="center"><a href="javascript:window.close()"><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+20,document.imageTest.height+40)"></a></div></td></tr></table></div></BODY></HTML>';
popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
}
