﻿function $(id) {
    return document.getElementById(id);
}

function TrocarFoto(objeto, imagem){
   
  myObj = $(objeto);
  myVideo = $('videocarro');
  
  if(myObj != null){
	  if(imagem.indexOf('imagens/video.jpg')>0){
		   
		   myObj.style.display = 'none';
		   
		   if(myVideo != null){
		   		myVideo.style.display = 'block';
		   }
		   
	  }else{						  
			myObj.src = imagem;			
			myObj.style.display = 'block';
			
			if(myVideo != null){
				myVideo.style.display = 'none';
			}
	  }
  } else {
	 alert('Erro ao carregar a imagem ou vídeo!')  
  }
}

function abre_janela(width, height, nome, scrollbar) {
	var top; var left;
	top = ( (screen.height/2) - (height/2) )
	left = ( (screen.width/2) - (width/2) )
	window.open('',nome,'width='+width+',height='+height+',scrollbars='+scrollbar+',toolbar=no,location=no,status=no,menubar=no,resizable=no,left='+left+',top='+top);
}

