

// ouvre une fenêtre en popup

function open_window(url, height, width)
{
 window.open(url, 'popup', 'height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
}
