// JavaScript Document

<!--  
// copia cores
function copy_cor(origem,destino){
         document.form_aparencia[destino].value = 
origem['options'][origem['selectedIndex']].value;
}

// pega cor do popup
function pegaCor(campoCor)
{
popCor = window.open("","cor","width=260,height=200,status=no,location=no,");
popCor.location.href = "aparencia/popup.php?"+campoCor;
if (popCor.opener == null) popCor.opener = window;
popCor.opener.name = "opener";
}

//-->