<!--
var remote = null;
function newWin( loc ) {
    remote = window.open('',
'TheRemotePix','width=550,height=500,scrollbars=1');
    if (remote != null) {
            if (remote.opener == null) {
            remote.opener = self;
        }
            remote.location.href = loc;
    } else { self.close(); }
}
//-->

<!--
function open_window2(url) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar= 0,scrollbars=1,resizable=1,width=550,height=600');
}
//-->