<!-- javascript function to open a new popup Info window and then bring it to the front -->

function open_window(url) {
Popup = window.open(url,"Images",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=50,top=50,width=700,height=550');
meToFront();
}

function meToFront(){
Popup.focus()
}