function playVideo(id) {
	if(document.getElementById && !(document.all)) {
		if (document.getElementById('FlashVideo') != null)
			document.getElementById('FlashVideo').src = "http://blog.mohdimran.com/video/mini_player.php?video_selection=" + id;
		else
			alert("The Flash Video widget is not loaded yet.\nPlease allow sometime for the page to be fully loaded.");
	} else if (document.all) {
		if (document.all.FlashVideo != null)
			document.all.FlashVideo.src = "http://blog.mohdimran.com/video/mini_player.php?video_selection=" + id;
		else
			alert("The Flash Video widget is not loaded yet.\nPlease allow sometime for the page to be fully loaded.");
	}
}