// Version 3.0.1 2005-03-11
// Copyright Jaroslav Melgr (TK Logic)

function MM_openBrWindow(theURL,winName,features) 
{ //v2.0
	window.open(theURL,winName,features);
}

function TK_openWindow(url, target, features) {
  var theWindow =
    window.open(url, target, features);
  theWindow.focus();
  return theWindow;
}


