<!--
var newWin;
function OpenWindow(url, width, height) {
if (newWin) {
newWin.close();
}
newWin=window.open(url,'new','width='+width+',height='+height+',status=yes,scrollbars=no');
newWin.focus();
}
//-->