<!--
n_width=832;
n_height=600;
x = (screen.availWidth  - n_width) / 2;
y = (screen.availHeight - n_height) / 2;
function OpnWin(url,winName){
newWin=window.open(url,winName,"toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,width="+n_width+",height="+n_height);
newWin.moveTo(x,y);
//newWin.resizeTo(n_width,n_height);
if (parseInt(navigator.appVersion) >= 4) { newWin.window.focus(); }
}


//-->
