//
// FONCTIONS JAVASCRIPT
//

function solb_popup(src, name, w, h) { 
    size=",width="+w+",height="+h ;
    browser=window.open(src, name,"scrollbars=yes,resizable=yes,toolbar=no,status=no, menubar=no,location=no,directories=no"+size);
} 

var id_show = 0;
function solb_showphoto(_photo, _width, _height) {
    size=",width="+(_width+20)+",height="+(_height+20);
    browser=window.open("showphoto.php3?thePhoto="+_photo+"&theWidth="+_width+"&theHeight="+_height, "Soleil_Bleu_"+id_show++, "scrollbars=yes,resizable=yes,toolbar=no,status=no,menubar=no,location=no,directories=no"+size);
}

function solb_open_window(src, name) {
    browser=window.open(src, name);
}