function centerWindowW(address, width) {
	var xMax = screen.height;
	var yMax = screen.width;
    var locationX = ((xMax - 800)/2) - 10;

if ( width === undefined) {
  h = 600;
} else {
  h = width;
}
	var locationY = (yMax - h)/2;
    window.open(address,'','height=800,resizable=no,width=' + h + ',scrollbars=yes,left=' + locationX + ',top=' + locationY);
}
