function showInline (elName) {
	var theElemenet = document.getElementById(elName);
	if (theElemenet) {
		theElemenet.style.display = "inline";
	}
}
function hideInline (elName) {
	var theElemenet = document.getElementById(elName);
	if (theElemenet) {
		theElemenet.style.display = "none";
	}
}

function childCall(status){
	window.location.href = window.location.href		
}

function childCallUpload(status){
	if (status == "enter"){
		window.location = "submit.php";
	}else{
		//window.location.href = window.location.href
		window.location = "view_entry.php?entry="+status;
	}		
}
