/*======================================
	Ajax : Ajax link with PHP
	Date : 20 November, 2011
	Name : Kuch ChanOngPang
	Email : welcome.ongpang@gmail.com	 
			pang@bigmancambodia.com 
	Personal Site : www.ongpang.0fees.net
					www.iknow.edu.cm
========================================*/

// YouTube
function YouTube(id, i){
	if(id == ""){
		document.getElementById("play").innerHTML = "";
		return;
	} 
	if(window.XMLHttpRequest){
		xmlhttp = new XMLHttpRequest();
	}else{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
			document.getElementById("img_youtube"+i).style.display = "none";
			document.getElementById("video_youtube"+i).innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","video_youtube.php?id="+id,true);	
	xmlhttp.send();
}

// Play Album CD
function PlayMusicCD(cid, cvol, i){
	if(cid == ""){
		document.getElementById("play").innerHTML = "";
		return;
	} 
	if(window.XMLHttpRequest){
		xmlhttp = new XMLHttpRequest();
	}else{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
			document.getElementById("play").innerHTML = xmlhttp.responseText;
			document.getElementById(i).style.backgroundColor = "#151515";
			document.getElementById(i).style.color = "#EE7701";
		}
	}
	xmlhttp.open("GET","playcd.php?cid="+cid,true);	
	xmlhttp.send();
	
	$('#dialog').dialog({
		autoOpen: true,
		show: "blind",
		hide: "blind",
		width: 376,
		height: 145,
		buttons: {
			"Buy Online": function() { // button 1 (OK)
				$(this).dialog(window.location="index.php?goto=Music/Videos&type=Album CD&vol="+cvol);
			//	$(this).dialog("close");			
			},
			"View All": function() { // button 2 (Cancel)
				$(this).dialog(window.location="index.php?goto=Music/Videos&type=Album CD&vol="+cvol);
			//	$(this).dialog("close");
			} 			
		}
	});	
}

// Post News
function PostNew(uid){
	if(uid == ""){
		document.getElementById("play").innerHTML = "";
		return;
	}
	if(window.XMLHttpRequest){
		xmlhttp = new XMLHttpRequest();
	}else{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
			document.getElementById("play").innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","postNews.php?uid="+uid,true);	
	xmlhttp.send();
	$('#dialog').dialog({
		autoOpen: true,
		show: "blind",
		hide: "blind",
		width: 385,
		height: 490
	});	
}

// Un Post News
function UnPostNew(){
	if(window.XMLHttpRequest){
		xmlhttp = new XMLHttpRequest();
	}else{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
			document.getElementById("play").innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","unPostNews.php",true);	
	xmlhttp.send();
	$('#dialog').dialog({
		autoOpen: true,
		show: "blind",
		hide: "explode",
		width: 340,
		height: 90
	});
}




