/**/
function popUpClose(id) {
	
	var currentDiv = document.getElementById(id);

	if (currentDiv != null ) {
		if (document.all && currentDiv.filters[0]) {
			currentDiv.filters[0].Apply();
			currentDiv.style.visibility = "hidden";
			currentDiv.filters[0].Play();
		} else {
			currentDiv.style.visibility = "hidden";
		}
	}
}

/**/
function popUpShow(id) {
	
	var currentDiv = document.getElementById(id);

	if (currentDiv != null ) {
		if (document.all && currentDiv.filters[0]) {
			currentDiv.filters[0].Apply();
			currentDiv.style.visibility = "visible";
			currentDiv.filters[0].Play();
		} else {
			currentDiv.style.visibility = "visible";
		}
	}
}

/**/
function popUp1ShowTimeout(id) {
	window.setTimeout("popUpShow('popUpBox1')", 700);
}

/**/
function popUp2ShowTimeout(id) {
	popUpClose("popUpBox1");
	window.setTimeout("popUpShow('popUpBox2')", 700);
}

