// JavaScript Document
var novaCor="#AA47BA"; //roxo
var cor="#8ED414"; //verde
function trocaCor(cor,elemento)
{
 elemento.style.background=cor;
elemento.style.cursor = "hand";
 
 }
 function destroca(novaCor,elemento)
 {
  elemento.style.background = novaCor;
}


<!--hide 
//função para abrir janela numa celula
function newwindow(u) 
{ 
window.open('u','jav','width=300,height=200,resizable=yes'); 
} 
// para chamar a função - onClick="javascript:newwindow('teste.htm')"
//--> 

<!--
var bookmarkurl=document.location
var bookmarktitle=document.title

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
// -->


function addPagInicial()
{
   document.body.style.behavior='url(#default#homepage)';
   document.body.setHomePage("http://www.casamentocarioca.com.br");
}

<!-- função para desabilitar seleção
function disableselect(e){
return false;
}
function reEnable(e){
return true;
}
document.onselectstart=new Function("return false;")
if(window.sidebar){
document.form.onselectstart=reEnable();
document.onmousedown=disableselect();
document.onclick=reEnable();
}
//-->
