// JavaScript Document
// loaiht: hinhanh, flashx, video x
//function LoadTinVideo(loaiht,idimg,idflash,idvideo,tdtin,sltin)

var kimg="gif,jpg,swf";
	
function LoadTinVideo(controlimgflash,controlvideo,urli,idtin,tdtin,ndtin)// xu ly click mouse
{
	kiemfile=urli.substring(urli.lastIndexOf(".")+1); // cat lay duoi file
	if(kimg.indexOf(kiemfile)!=-1)// xu ly hinh va flash
	{
		document.getElementById(controlimgflash).style.display="block";
		document.getElementById(controlvideo).style.display="none";
		if(kiemfile=="swf")
		{
			document.getElementById(controlimgflash).innerHTML="<embed src="+urli+" width=\"447\" height=\"370\" type=application/x-shockwave-flash wmode=\"transparent\"></embed>";
		}
		else
		{
			document.getElementById(controlimgflash).innerHTML="<img src="+urli+" />";
		}
		//alert("hinh anh");
	}
	else // xu ly film
	{
		document.getElementById(controlimgflash).style.display="none";
		document.getElementById(controlvideo).style.display="block";
		//alert("film");
	}
	document.getElementById(idtin).innerHTML="<span class=chitiet_nuoc_soluoc_fontb>"+tdtin+"</span><p>"+ndtin+"</p>";
}
function movecolor(idlink)// xu ly mau chu tren IE 6
{
	document.getElementById(idlink).style.color="#a40000";
	document.getElementById(idlink).style.textDecoration="underline";
}
function outcolor(idlink) // xu ly mau chu tren IE 6
{
	document.getElementById(idlink).style.color="#666666";
	document.getElementById(idlink).style.textDecoration="none";
}

function bmovecolor(idlink)// xu ly mau chu tren IE 6
{
	document.getElementById(idlink).style.textDecoration="underline";
}
function boutcolor(idlink) // xu ly mau chu tren IE 6
{
	document.getElementById(idlink).style.textDecoration="none";
}

