function open_new_window(url)
{
	var m42=null;
      window.name = "BWINDOW";
     m42 = window.open(url,'parentWindow','resizable,scrollbars=yes,menubar=no,status=yes,toolbar=no,location=no, width=800, height=550 ');
    if (window.focus)
           { m42.focus(); }
}
function open_new_window2(url, width, height)
{
	var m42=null;
      window.name = "BWINDOW";
     m42 = window.open(url,'parentWindow','resizable,scrollbars=yes,menubar=no,status=yes,toolbar=no,location=no, width='+width+', height='+height+' ');
    if (window.focus)
           { m42.focus(); }
}
