/* close window script for all section */

/* created: 2002/06/07 */



var ident=null;

var identCount = 0;

function closeWin() {

    focus();

	indent=self.setTimeout("resetIdent()",30000);

}

function resetIdent()

{

	if(identCount++<5)

	{

	close();

	}

}

