/*************************************************************
*  Copyright © iWeBB, 2001-2002                              *
*  Carter BloodCare All rights reserved                      *
**************************************************************/
var timerID = 0;
function openpop(wino, wi, ht, tp, lf, ds, tb, sb, rs) 
{
if (timerID) {
clearTimeout(timerID)
}
	OpenMyWin = window.open(wino, "OpenMyWin", 'width='+wi+',height='+ht+',top='+tp+',left='+lf+
',toolbar='+tb+',scrollbars='+sb+',resizable='+rs);
        OpenMyWin.focus();

	timerID = setTimeout('closeWin(OpenMyWin)', ds);	// delay 1000 = 1 sec before closing
}


function closeWin(newWindow) 
{
if (timerID) {
clearTimeout(timerID)
}
newWindow.close();				// close small window and depart
}