//botoes
setButton=function(obj){
	obj.normal=new Image();
	obj.normal.src=obj.src;
	obj.hover=new Image();
	var tempH=obj.getAttribute("hsrc");
	obj.hover.src=tempH;
	obj.onmouseover= function(){this.src=this.hover.src};
	obj.onmouseout= function(){this.src=this.normal.src};
}
function getButtons(){
	for(i=0; i<document.images.length; i++){
		var tempH=(document.images[i].getAttribute("hsrc"))? document.images[i].getAttribute("hsrc") : false;
		if (tempH){
			setButton(document.images[i]);
		}
	}
}

function AbreImpressao(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function indica(id,tipo){
	window.open("pop_indicacao.asp?idConteudo="+id+"&chTipo="+tipo, "NoticiaIndica", "scrollbars=no,resizable=no,width=300,height=370,top=100,left=250");
}

