function MM_openBrWindow(id, width, height) { //v2.0

    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('showimage.php?n='+id,'newwindow',settings);

    return false;
}

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 bbOpenPicture(theURL, width, height, title, text, root) {

    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

    popupwin = window.open('','',settings);
    
    popupwin.document.writeln('<html>');
    popupwin.document.writeln('<head>');
    popupwin.document.writeln('  <title>Tamara Otel - '+title+'</title>');
    popupwin.document.writeln('  <link rel="stylesheet" href="'+root+'css/default.css" type="text/css">');
    popupwin.document.writeln('</head>');
    popupwin.document.writeln('<body bgcolor="#EEEEEE" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
    popupwin.document.writeln('<center>');
    popupwin.document.writeln('  <img src="'+theURL+'"><br>');
    popupwin.document.writeln('  <a href="javascript:window.close();" class="picturelink"><b>'+text+'</b></a></font>');
    popupwin.document.writeln('</center>');
    popupwin.document.writeln('</body>');
    popupwin.document.writeln('</html>');

    
    return false;
}

function bbOpenPictureScroll(theURL, width, height, title, text, root) {

    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'

    popupwin = window.open('','',settings);
    
    popupwin.document.writeln('<html>');
    popupwin.document.writeln('<head>');
    popupwin.document.writeln('  <title>Tamara Otel - '+title+'</title>');
    popupwin.document.writeln('  <link rel="stylesheet" href="'+root+'css/default.css" type="text/css">');
    popupwin.document.writeln('</head>');
    popupwin.document.writeln('<body bgcolor="#EEEEEE" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
    popupwin.document.writeln('<center>');
    popupwin.document.writeln('  <img src="'+theURL+'"><br>');
    popupwin.document.writeln('  <a href="javascript:window.close();" class="picturelink"><b>'+text+'</b></a></font>');
    popupwin.document.writeln('</center>');
    popupwin.document.writeln('</body>');
    popupwin.document.writeln('</html>');

    return false;
}