/**************************
	Php Quran - 2009
Copyrights for all muslims
***************************/
	
	//get element by id name
	function $(id)
	{
		return document.getElementById(id);
	}
	
	//show telawa
	function showTelawa(v)
	{
		var v = v;
		
		if(v != '99999999999999999')
		{
			var split = v.split(":");
			document.getElementById('title').innerHTML = '<h3>' + split[1] + '</h3>';
		}
		else
		{
			document.getElementById('title').innerHTML = '';
		}
		
		document.getElementById('flashdiv').innerHTML = '<object id="flash" type="application/x-shockwave-flash" data="flash-mp3-player.swf" width="300" height="300"><param name="movie" value="flash-mp3-player.swf" /><param name="wmode" value="transparent" /><param id="flashvar" name="flashvars" value="playList=' + split[0] + '.xml&amp;ShowPlaylist=1&amp;ShowEQ=1&amp;firstTrack=1&amp;initVol=100" /></object>';

	}