﻿// JScript menu

////////////
function MM_openBrWindow(theURL,winName,features) { //v2.0
        window.open(theURL,winName,features);
    }
	function showTin(css, hideIDC, showIDC)
	{
		//document.getElementById("ArticleImages").className = css;
		
		document.getElementById(hideIDC).style.display = "none";
		
		document.getElementById(showIDC).style.display = "";
		document.getElementById(showIDC).style.borderBottom = "solid 1px #c6d0d1";
		document.getElementById(showIDC).style.borderLeft = "solid 1px #c6d0d1";
		document.getElementById(showIDC).style.borderRight = "solid 1px #c6d0d1";		
		//alert(image.id+'_'+hideIDC);
		if(hideIDC == "SKTINNB")
		{
		    var newhot = document.getElementById("IDTINNOG");
            var center1 = document.getElementById("IDTINGIUA");
            var newsnew = document.getElementById("IDTINNB");
            
            var newhotl = document.getElementById("imagel");
            var newsnewl = document.getElementById("videol");
            
            newhotl.style.color = "#4d5580";
            newsnewl.style.color = "#980501";
            
		    //image.style.borderTop="solid 1px #c6d0d1";
		    newhot.style.borderLeft="solid 1px #c6d0d1";
		    newsnew.style.borderRight="solid 1px #c6d0d1";
		    center1.style.backgroundImage="url('images/quaytrai.gif')";
		    newsnew.style.backgroundImage="url('images/bgdachon.gif')";
		    
		    
		    newhot.style.backgroundImage="url('images/bgchuachon.gif')";
		    newsnew.style.borderTop="0";
		    newsnew.style.borderRight="solid 1px #c6d0d1";
		    newsnew.style.borderLeft="0";
		}
		if(hideIDC == "SKTINNOG")
		{
		    var newhot = document.getElementById("IDTINNOG");
            var center1 = document.getElementById("IDTINGIUA");
            var newsnew = document.getElementById("IDTINNB");
            
            var newhotl = document.getElementById("imagel");
            var newsnewl = document.getElementById("videol");
            newsnewl.style.color = "#4d5580";
            newhotl.style.color = "#980501";
            newsnew.style.borderRight="solid 1px #c6d0d1";
            newsnew.style.backgroundImage="url('images/bgchuachon.gif')";
		    newsnew.style.borderLeft="0";
		    
		    newhot.style.borderTop="0";
		    newhot.style.borderLeft="solid 1px #c6d0d1";
		    
		    
		    center1.style.backgroundImage="url('images/quayphai.gif')";
		    newhot.style.backgroundImage="url('images/bgdachon.gif')";	
		    	    
		}
	}
	
///////////// alax	
	
var xmlHttp
var idtr="";
var ids="";
var kt="";
function show_thickbox(Ma,id)
{ 
ids=idtr;
idtr=id;
kt=idtr;


xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="respon.aspx";
url=url+"?q="+Ma;
//url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);

}

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{ 
//alert(xmlHttp.responseText)
document.getElementById(ids).innerHTML="";

document.getElementById(idtr).innerHTML=xmlHttp.responseText;


showtip(kt);
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}