// JavaScript Document

function profile_edit(id) {
	Element.hide('details_' + id + '_static');
	Element.show('details_' + id + '_edit');
	
}


function slide(id, value) {
	
	if(value==1) { 
	
	Effect.BlindDown(id);
	
	} else {
		
		
	}
}


function dx_expand(id, dir, height) {
	
	if(dir == 'open') { 
	Effect.Appear('rest_'+id);
	document.getElementById('parent_'+id).style.height = 'auto';
	
	Element.hide('open_'+id);
	Effect.ScrollTo('anchor_'+id);
	
	}
	
	else if(dir == 'close') {
	Effect.BlindUp('rest_'+id);
	$('parent_'+id).morph('height:'+height+'px');
	Element.show('open_'+id);
	Effect.ScrollTo('parent_'+id);
	
	}
	
}

function confirmation(url) {
	var answer = confirm("Are You Sure?");
	if (answer){
		window.location = url;
	}
	else{
		
	}
}
