var strCampo;
var oVentana;
function setcolor(c) {
	if (c!=null) {		
		document.prueba.elements[strCampo].value='#' + c;	
	} else {
		document.prueba.elements[strCampo].value="";	
	}
}

function selectcolor(n) {
	strCampo=n;
	if (oVentana!=null && !oVentana.closed)
	{
		oVentana.focus();
	} else  {
		oVentana = window.open("comunes/Colores.htm","ColorPicker","toolbar=no,scrollbar=no,height=245,width=315");
	}
}