<!--
var pWindowWidth = 970;
var pWindowHeight = 648;

function OpenWw() {
var cen = 'width=' + pWindowWidth;
cen += ',';
cen += 'height=' + pWindowHeight;
cen += ',';

var cenw = (screen.width / 2) - (pWindowWidth / 2);
var cenh = (screen.height / 2) - (pWindowHeight / 2);
if (navigator.userAgent.indexOf ('MSIE') != -1) {
cen += 'left=' + cenw;
cen +=',';
cen += 'top=' + cenh;
} else if (navigator.userAgent.indexOf ('Mozilla') != -1) {
cen += 'screenX=' + cenw;
cen += ',';
cen += 'screenY=' + cenh;
}
window.open('/saltww/w_index.html','pop',cen,'status=no,scrollbars=no,resizable=no');
}
//------------------
