function popymla (){
if (document.all) {
var xMax = screen.width; 
var yMax = screen.height;
} else {
if (document.layers)
var xMax = window.outerWidth; 
var yMax = window.outerHeight;
};
newWindow = window.open('./clients/index.php','newWindow',
'width='+(xMax-100)+',height='+(yMax-100)+',top=0,left=0,resizable=1');
newWindow.document.close();
newWindow.focus();
  } ;
