// DMS-Systems
// Nicola Zordan
// DMS_header_script.js
// Generic scripts to be used in every pages


var NewWindowWidth, NewWindowHeight;
NewWindowWidth=800;
NewWindowHeight=600;
NewWindowWidth=screen.width*0.8;
NewWindowHeight=screen.height*0.8;
function DMS_NewWindow (url) {
var w,WindowDefinition,features;
//  features='toolbar=yes,location=no,scrollbars=yes,resizable=yes';
  features='toolbar=yes,location=yes,scrollbars=yes,resizable=yes, top=20, left=20';
  WindowDefinition='width='+NewWindowWidth+',height='+NewWindowHeight+'';
// window.open (utl, 'popup', 'width=570,height=400,toolbar=yes,location=no,scrollbars=yes,resizable=yes');
// window.open (url, 'popup', 'toolbar=yes,location=no,scrollbars=yes,resizable=yes');
// w=window.open (url, 'popup', '');
 w=window.open (url, 'popup', WindowDefinition+','+features);
 w.focus();
// return(w);
// return (false);
};
