// JavaScript Document

function DoShowHelp()
{
// alert(window.location);
	var barref = "Help.php?HelpSource="+window.location;
	var nswidth = 800;
	var nsheight = 600;
	var iewidth = 800;
	var ieheight = 600;

  	var centerx = ( screen.width-nswidth ) / 2  ;
  	var centery = ( screen.height-nsheight ) / 2  ;

   	newwin = window.open(barref,'','width=' + nswidth.toString() +
		                     ',height=' + nsheight.toString() + ',status=no,scrollbars=yes', false);
   	newwin.moveTo(centerx,centery);

	newwin.focus();

	return true;
}

function DoShowThisHelp(helpfile)
{
// alert(helpfile);
	var barref = "Help.php?"+helpfile;
	var nswidth = 800;
	var nsheight = 600;
	var iewidth = 800;
	var ieheight = 600;

  	var centerx = ( screen.width-nswidth ) / 2  ;
  	var centery = ( screen.height-nsheight ) / 2  ;

   	newwin = window.open(barref,'','width=' + nswidth.toString() +
		                     ',height=' + nsheight.toString() + ',status=no,resizable=yes,scrollbars=yes', false);
   	newwin.moveTo(centerx,centery) ;

	newwin.focus();

	return true;
}
