	function openKhutbah(myDate, link) {
		var currentTime = new Date()
		var today = new Date(currentTime.getFullYear(), currentTime.getMonth(), currentTime.getDate());
		var dt = new Date(myDate)

		var name = link.innerHTML.replace('<strong>', '').replace('</strong>', '').replace('</STRONG>', '').replace('<STRONG>', '');
		if(dt.toString() == today.toString()) {
			window.open('/liveKhutbah.html?x=' + name,'name','height=380,width=368,scrollbars=1')
		} else {
			//do nothing
		}
	}

