function openHelp(link) {
  if (document.all) {
    // IE
    window.showHelp(link);
  } else {
    openHelpWindow(50, link);
  }
}

function openWindow(percent, whichone) {
    var w = 750, h = 550; // default sizes
    if (window.screen) {
        w = window.screen.availWidth * percent / 100;
        h = window.screen.availHeight * percent * 0.9 / 100;
        l = (window.screen.availWidth - w) / 2;
        t = (window.screen.availHeight - h) / 6;
    }
    window.open(whichone,'remote','width='+w+',height='+h+',top='+t+',left='+l+',status=1,menubar=1,resizable=1,scrollbars=1,location=1,toolbar=1');
}

function openHelpWindow(percent, whichone) {
    var w = 250, h = 500; // default sizes
    if (window.screen) {
        w = window.screen.availWidth * percent / 100;
        h = window.screen.availHeight * percent * 0.9 / 100;
        l = window.screen.availWidth - w - 10;
        t = 5;
    }
    window.open(whichone,'help','width='+w+',height='+h+',top='+t+',left='+l+',status=1,menubar=1,resizable=1,scrollbars=1,location=1,toolbar=1,dependent=1,alwaysRaised=1');
}
function openSection(sec){
	if( sec != "" && sec != 'null' ){
		window.location = "#"+sec;
	}
}