/* Copyright © 2000 by Shora Software <shorasoft.com>. */
var win = null;
function msLoad()
{
 msBreakOut();
}

function msBreakOut()
{
 if (window != top)
   top.location.href = location.href;
}
function view(nUrl, nwidth, nheight){
if (win && win.open && !win.closed) {
win.close();
win = null;
}
win=window.open(nUrl, '', 'width='+nwidth+',height='+nheight+',resizable=no,scrollbars=no,menubar=no');
}
