window.addEvent("domready",initTemplate);
function confirmDelete(){
	if(confirm("Are you sure you wish to delete this item?")){
		return true;
	} else {
		return false;
	}
}
function initTemplate(){
	/*makePopUp("children");
	makePopUp("students");
	makePopUp("adults");
	makePopUp("creative");*/
	
	//temporarily kill all internet campus links
	$each($$('a'),function(thisItem,thisIndex){
		if(thisItem.href == "http://internet.newlifechurch.tv/"){
			thisItem.href = "icampus-soon.php";
			thisItem.rel = "lightbox[set 430 100]";
			//thisItem.onclick = function(){return false;};
		}
	});
}

function submitedit(){
	$('xhtml1').value = $('editor1').value;
}


