function checkform() {
    document.getElementById("progress").style.visibility = "visible";
    document.getElementById("prog_text").style.visibility = "visible";
	return true;
}

window.onload = function() {
    document.getElementById("progress").style.visibility = "hidden";
    document.getElementById("prog_text").style.visibility = "hidden";
}

function toggleDiv(id,flagit) {
	if (flagit=="1"){
		if (document.layers) document.layers[''+id+''].visibility = "show"
		else if (document.all) document.all[''+id+''].style.visibility = "visible"
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
	}
}
