
 function BodyInit() {

	// EventSwitch();

	//CountDown("edtime1");
	//CountDown("edtime2");
	//CountDown("edtime3");
	//CountDown("edtime4");
	//CountDown("edtime5");
	//CountDown("edtime6");

	if  (document.getElementById("user") && document.getElementById("pass") && document.getElementById("pass2")) {

		document.getElementById("user").focus();	
		document.getElementById("user").blur();
		document.getElementById("pass").value = "";
		document.getElementById("pass2").value = "";
	}


	if (document.getElementById("lbox")) {
		setTimeout("LightboxDelegate('" + document.getElementById("lbox").value + "','')",200);
	}

	if (document.getElementById("notification2")) {
		setTimeout("Notification2Hide()",9000);
	}

 }

 function Notification2Hide() {
	document.getElementById("notification2").style.display = "none";
 }

 window.onload = BodyInit;