var lastElement = '';

function deleteconfirm(del){ 
	if (
		confirm("Are you sure you wish to permanently delete this item?\n\nOK = Yes - Cancel = No")){ 
		window.location=del;
	}
} 

function boxToggle(element){

	if(lastElement == element){
		//Effect.SlideUp(element, { duration: 0.5 });
		return false
	}
	
	if(lastElement){
		Effect.SlideUp(lastElement, { duration: 0.5 });
	}
	Effect.SlideDown(element, { duration: 0.5 });
	lastElement = element
	return false;
}

function no(){}
