<!-- The 3 following functions are almost identical, they all perform expand/contract text actions -->

		function toggle(divID,textID) {
			var ele = document.getElementById(divID);
			var text = document.getElementById(textID);
			if(ele.style.display == "block") {
		    		ele.style.display = "none";
				text.innerHTML = "[more ... ]";
		  	}
			else {
				ele.style.display = "block";
				text.innerHTML = "";
			}
		} 
		
		function toggle2(divID,textID) {
			var ele = document.getElementById(divID);
			var text = document.getElementById(textID);
			if(ele.style.display == "block") {
		    		ele.style.display = "none";
				text.innerHTML = "[show all soft skills courses]";
		  	}
			else {
				ele.style.display = "block";
				text.innerHTML = "";
			}
		} 
		
		
		function toggle3(divID,textID) {
			var ele = document.getElementById(divID);
			var text = document.getElementById(textID);
			if(ele.style.display == "block") {
		    		ele.style.display = "none";
				text.innerHTML = "[show all IT courses]";
		  	}
			else {
				ele.style.display = "block";
				text.innerHTML = "";
			}
		} 


function CloseCourse() {
	ModalPopups.Close("jsAlertKALU");
 }


function ModalPopupsAlertKALU(course_number, title_text, attend_text, covered_text, related_course_1, related_course_1_number, related_course_2, related_course_2_number, related_course_3, related_course_3_number) {  
	ModalPopups.Alert("jsAlertKALU",  
		"<a href='javascript:CloseCourse();'> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Close [x] </a> <br> COURSE DETAILS | " + title_text,  
	"<div style='padding:0px;'>" +

		"<p class='course_popup_subtitle'> Who should attend? </p>" + "<p class='course_popup_text'>" + attend_text + "</p>" +

		"<p class='course_popup_subtitle'>What's covered? </p>" + "<p class='course_popup_text'>" + covered_text + "</p>" +

		"<p class='course_popup_subtitle'>Related courses</p>" + 

		"<p class='course_popup_text'>" +
		"<table style='margin-left:8px; width:590px'>" +   
		"<tr><td><a href='javascript:CloseCourse();javascript:ModalPopupsAlertKALU" + related_course_1_number + "();'>" + related_course_1 + "</a> | <a href='javascript:CloseCourse();javascript:ModalPopupsAlertKALU" + related_course_2_number + "();'>" + related_course_2 + "</a> | <a href='javascript:CloseCourse();javascript:ModalPopupsAlertKALU" + related_course_3_number + "();'>" + related_course_3 + "</a> </td><td></td></tr>" + 
        "</table>" +   
		"</p>" +

		"<p class='course_popup_subtitle'>Contact us</p>" + "<p class='course_popup_text'> Got a query? Want to book the course? <a href='contact.php' title='Contact us'>Contact us</a> on 01162 24 90 12</p>" +

	"</div>", 
         {  
	shadow: false
         }  
     );  
 }  


