// JavaScript Document

	function onTabla(id)
	{
		document.getElementById('top'+id).src = "img/img_sup_on.jpg";
		document.getElementById('bg'+id).style.backgroundImage = "url('img/img_bg_on.jpg')";
		document.getElementById('bottom'+id).style.backgroundImage = "url('img/img_link_on.jpg')";
		
	}

	function offTabla(id)
	{
		document.getElementById('top'+id).src = "img/img_sup.jpg";
		document.getElementById('bg'+id).style.backgroundImage = "url('img/img_bg.jpg')";
		document.getElementById('bottom'+id).style.backgroundImage = "url('img/img_link.jpg')";
	}

	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}

