function open_popup(id){
	var url ="http://40b2vandhvinh.com/"+id
	window.open(url,"_blank","height=400,width=400,status=no,resizable=yes,toolbar=no,menubar=no,location=no");
}
var CurrTr = "tamjindo"
var NewTr="tamjindo2"
function showdetail(id){	
	document.getElementById(CurrTr).style.display = 'none';
	NewTr = "detail_"+id
	if (NewTr==CurrTr){
		CurrTr = "tamjindo"
		document.getElementById("detail_"+id).style.display = 'none'
	}else{
		document.getElementById("detail_"+id).style.display = ''
		CurrTr = "detail_"+id
	}
}