// This file retrieved from the JS-Examples archives
// http://www.js-examples.com
// 100s of free ready to use scripts, tutorials, forums.
// Author: JS-Examples - http://www.js-examples.com/ 

function MDM_openWindow(theURL,winName,features) 
{ 
  var _W=window.open(theURL,winName,features,resizable=yes);
  _W.focus();
  _W.moveTo(50,50); 
} 
