var IE = document.all?true:false

function MostraDetalhe()
{
	MostraDiv('divDetalhe');
	if(IE)
		yScroll = document.body.scrollTop;
	else
		yScroll = window.pageYOffset; 
	if (yScroll<80)
	{
		yScroll = yScroll + 100;
	}
	else
	{
		yScroll = yScroll + 20;
	}
	document.getElementById('divDetalhe').style.top = yScroll +'px';
}

function Detalhe(idCarro)
{
	Borra(true);
	MostraDetalhe();
	try
	{
		document.getElementById('divCarro'+idCarro).className =	'emvisita';		
	} catch(e) {};
	AbrirPagina('/box/detalhe.asp','divDetalhe','POST','idCarro='+idCarro,1)
}

function MostraDiv(d)
{
	document.getElementById(d).style.display = '';	
}

function EscondeDiv(d)
{
	document.getElementById(d).style.display = 'none';	
}

function Acessorios()
{
	d = document.getElementById('acessorio');	
	if (d.style.display=='')
		EscondeDiv('acessorio');
	else
		MostraDiv('acessorio');
}

function Borra(bol)
{	
	if (bol)
	{				
		MostraDiv('divBorrado');
		document.getElementById('divBorrado').style.height = document.getElementById('divMiolo').offsetHeight;
	}
	else
	{
		EscondeDiv('divBorrado');
	}
}

function FechaDetalhe()
{
	document.getElementById('divDetalhe').style.display = 'none';
	Borra(false);
}

function FotoMedia(idFoto,strFoto)
{
	document.fAbre.idFoto.value = idFoto;
	document.getElementById('fotoMedia').src = strFoto;
}

function AbreFicha(idCarro)
{
	var f = window.open("http://www.roggia.com/ficha.asp?idCarro="+idCarro, "ficha"+idCarro,"width=730,height=500,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=yes");
	f.focus();
}

function AbreFoto()
{		
	f = window.open ("http://www.roggia.com/MostraFotoFrame.asp?idFoto=" + window.document.fAbre.idFoto.value ,"FotoCarro"+window.document.fAbre.idFoto.value,"height=545,width=660");
	f.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
