<!--

function GetWidth(args)
{
  pos=args.indexOf('width');
  tmp=args.substring(pos+6,args.length);
  pos=tmp.indexOf(',');
  tmp1=tmp.substring(0,pos);
  return tmp1;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  winWidth=GetWidth(features);
  if (window.screen) var left=screen.availWidth-winWidth
  var win=window.open(theURL,winName,features + ',top=0,left=' + left);
  win.focus();
}


//-->
