//JAVASCRIPT FUNCTIONS FOR CAMP PROFILES

function get_camp_profile(camp_id, camper_id) {
	try {
	var url = "filebin/template/get_camp_profile.php?camp_id="+camp_id+"&camper_id="+camper_id;
	var xml = new JKL.ParseXML(url);
	var data = xml.parse();	
	if (data.instance.campOut != "") {
		document.getElementById('ind_camp_profile').innerHTML=data.instance.campOut;
	} else {
		document.getElementById('ind_camp_profile').innerHTML='<li>No data found.</li>';	
	}	
	initLightbox();

	} 
	catch (e) {
		alert (e);
	}
}

function delete_con(str){
	var agree = confirm(str);
	if (agree) {
		return true;
	}else{
		return false;	
	}
	
}