  function Ovr(src,clrOver) {
	  src.style.cursor = 'pointer';
	  src.border ='solid'; 
	  src.bgColor = clrOver;
  }

  function Out(src,clrIn) {
	  src.style.cursor = 'default';
	  src.bgColor = clrIn;
  }
	function arreglaFont(campo) {
		family=document.getElementById(campo+'_family').value;
		size=document.getElementById(campo+'_size').value;
		if (document.getElementById(campo+'_bold').checked) { bold='bold';} else { bold='';} ;
		if (document.getElementById(campo+'_italic').checked) { italic='italic';} else { italic='';} ;
		color=document.getElementById(campo+'_color').value;
		colorF=document.getElementById(campo+'_colorF').value;
		colorB=document.getElementById(campo+'_colorB').value;

		document.getElementById(campo+'_muestra').style.color=color;
		document.getElementById(campo+'_muestra').style.fontFamily=family;
		document.getElementById(campo+'_muestra').style.fontSize=size;
		document.getElementById(campo+'_muestra').style.fontWeight=bold;
		document.getElementById(campo+'_muestra').style.fontStyle=italic;

		document.getElementById('fondo_'+campo).style.backgroundColor=colorF;
		document.getElementById('borde_'+campo).style.backgroundColor=colorB;
		document.getElementById(campo).value=family+'.'+size+'.'+italic+'.'+bold+'.'+color+'.'+colorF+'.'+colorB;
	
	}
function arreglaColor(campo) {
		colorB=document.getElementById(campo).value;

		document.getElementById(campo+'_muestra').style.color=colorB;

	}

	function selectLayout(l) { 
		  document.getElementById('lay_1').style.backgroundColor='';
		  document.getElementById('lay_2').style.backgroundColor='';
		  document.getElementById('lay_3').style.backgroundColor='';
		  document.getElementById('lay_4').style.backgroundColor='';
		  document.getElementById('lay_'+l).style.backgroundColor='grey';
		  document.getElementById('layout').value=l;
	}
		function selectCType(l) { 
		  document.getElementById('ct_1').style.backgroundColor='';
		  document.getElementById('ct_2').style.backgroundColor='';
		  document.getElementById('ct_3').style.backgroundColor='';
		  document.getElementById('ct_4').style.backgroundColor='';
  		  document.getElementById('ct_5').style.backgroundColor='';
		  document.getElementById('ct_'+l).style.backgroundColor='#dddddd';
		  document.getElementById('ctype').value='BASICO:'+l;
	}
	function n() {
	
	}
