var galeriaWin;

function openGaleriaWin(theURL, newWin) {

	var tmp;
	features = 'width=760,height=570,scrollbars=no';
	if (newWin) 
	{
		tmp = window.open(theURL, '_blank', features);
		tmp.focus();
	}
	else 
	{
		galeriaWin = window.open(theURL, 'galeriaWin', features);
		galeriaWin.focus();
	}
	
	return false;

}


var tuningGaleraWin;

function openTuningGaleraWin(id, foto, newWin) {

	var tmp;
	features = 'width=795,height=595,scrollbars=no';
	theURL = '/new_revolution/tuning_da_galera/detalhes/ver.php?id=' + id;
	if (foto && !isNaN(foto)) theURL += '&fid=' + foto;
	if (newWin) 
	{
		tmp = window.open(theURL, '_blank', features);
		tmp.focus();
	}
	else 
	{
		tuningGaleraWin = window.open(theURL, 'tuningGaleraWin', features);
		tuningGaleraWin.focus();
	}
	
	return false;

}

