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,'ephesus',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) {

    if ( (screen.height*0.80)<height ) height = screen.height * 0.80;

    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>YemekveKültür - '+title+'</title>');
    popupwin.document.writeln('</head>');
    popupwin.document.writeln('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
    popupwin.document.writeln('  <img src="'+theURL+'"><br/> ');
    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>YemekveKültür - '+title+'</title>');
    popupwin.document.writeln('</head>');
    popupwin.document.writeln('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
    popupwin.document.writeln('<img src="'+theURL+'"><br/> ');
    popupwin.document.writeln('</body>');
    popupwin.document.writeln('</html>');

    
    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 PopupWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}