var carid = 0;

function openTab(id)
{
	if (document.getElementById(id).style.display == '')
	{
		document.getElementById(id+'a').style.backgroundImage = 'url(gfx/open.png)';
		document.getElementById(id).style.display = 'none';
	} else {
		document.getElementById(id+'a').style.backgroundImage = 'url(gfx/close.png)';
		document.getElementById(id).style.display = '';
	}
}
function initIMG(id)
{
	carid = id;
}
function showIMG(id)
{
	carid = id;
	document.getElementById('previmg').src = 'http://www.mamasan.fi/cars/t/' +id+ '.jpg';
	document.getElementById('previmga').href = 'http://www.mamasan.fi/cars/' +id+ '.jpg';
}
function pvIMG(url)
{
	if (!carid)
		carid = url;
	open('http://www.mamasan.fi/cars/'+carid+'.jpg');
}
