// <script language="JavaScript" src="/my-java.js" type="text/javascript"></script>

function MDM_openWindow(theURL,winName) { 
	var _W=window.open(theURL,winName, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=' + window.screen.availWidth * .75 + ', height=' + window.screen.availHeight * .5 + ', screenX=150, screenY=150, top=150, left=150');
	_W.focus();
	_W.moveTo(50,50); 
}

function MDM_openFullWindow(theURL,winName) { 
	var _W=window.open(theURL,winName, 'toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=no, width=' + window.screen.availWidth * .75 + ', height=' + window.screen.availHeight * .5 + ', screenX=150, screenY=150, top=150, left=150');
	_W.focus();
	_W.moveTo(50,50); 
} 

