/**********************************************************\
' Name     : default.js
' Purpose  : Default javascripts
' Created  : 2007-05-21; jimmy.simonsen@drumedar.se
' Modified : 2007-05-29; jimmy.simonsen@drumedar.se
' Comment  :
\**********************************************************/


// Opens a new browser window
var helpWindow=0;
function OpenHelpWindow(url)
{
	var _width = 300;
	var _height = 125;
  var _left = (screen.width/2) - _width/2;
  var _top = (screen.height/2) - _height/2;
  if(helpWindow){
    if(!helpWindow.closed) helpWindow.close();
  }
  helpWindow = window.open(url, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=no,width='+_width+',height='+_height+',left='+_left+', top='+_top+',screenX='+_left+',screenY='+_top+'');
}

