Subversion Repositories DevTools

Rev

Rev 5506 | Rev 5596 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5506 Rev 5590
Line 50... Line 50...
50
 
50
 
51
function MM_openBrWindow(theURL,winName,features) { //v2.0
51
function MM_openBrWindow(theURL,winName,features) { //v2.0
52
  window.open(theURL,winName,'left=20,top=20,'+features);
52
  window.open(theURL,winName,'left=20,top=20,'+features);
53
}
53
}
54
 
54
 
-
 
55
function MM_openVixIFrame(theURL,title) {
-
 
56
	vixIframeDialog2(this,theURL,title);
-
 
57
}
-
 
58
 
55
function MM_jumpMenu(targ,selObj,restore){ //v3.1
59
function MM_jumpMenu(targ,selObj,restore){ //v3.1
56
  if (selObj.options[selObj.selectedIndex].value) {
60
  if (selObj.options[selObj.selectedIndex].value) {
57
     eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
61
     eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
58
     if (restore) selObj.selectedIndex=0;
62
     if (restore) selObj.selectedIndex=0;
59
  }
63
  }
Line 359... Line 363...
359
 
363
 
360
function MM_showProgressBar() {
364
function MM_showProgressBar() {
361
  var pb = MM_findObj('ProgressBar');
365
  var pb = MM_findObj('ProgressBar');
362
  if ( pb )
366
  if ( pb )
363
    pb.style.visibility='visible';
367
    pb.style.visibility='visible';
-
 
368
  else {
-
 
369
	  pb = MM_findObj('divProgressBar');
-
 
370
	  if ( pb )
-
 
371
		pb.style.visibility='visible';
-
 
372
  }
364
}
373
}
365
 
374
 
366
function MM_hideProgressBar() {
375
function MM_hideProgressBar() {
367
  var pb = MM_findObj('ProgressBar');
376
  var pb = MM_findObj('ProgressBar');
368
  if ( pb )
377
  if ( pb )