/*************************************************************
*  Copyright © iWeBB, 2001-2002                              *
*  Carter BloodCare All rights reserved                      *
**************************************************************/
function openhelp(hdtx,pagetx, wi, ht, tp, lf,ds) 
{
  text =  "<html>\n<head>\n<title>Help</title>\n<body>\n";
  text += "<center>\n<br>";
  text += "<h2>";
  text += "<u>";
  text += hdtx;
  text += "</u>";
  text += "</h2>";
  text += "</center>"
  text += "<p>";
  text += pagetx;
  text += "</p>";
  text += "</body>\n</html>\n";

	OpenWin = window.open('', "CtrlWindow", 'width='+wi+',height='+ht+',top='+tp+',left='+lf);
	OpenWin.document.write(text);
	setTimeout('closeWin(OpenWin)', ds);	// delay 30 seconds before closing
}


function closeWin(newWindow) 
{
newWindow.close();				// close small window and depart
}