function showTopMenuOver(text)
{
	var nText = document.getElementById('tttMenu');
	nText.innerHTML = text;
}

function showTopMenuOut()
{
	var nText = document.getElementById('tttMenu');
	nText.innerHTML = "&nbsp;";
}

function ChangeColor(sImg, sText)
{
	var img = document.getElementById('CarID');
	var text = document.getElementById('Text');
	
	img.src = sImg;
	text.innerHTML = sText;
}

function ChangeFoto(sImg)
{
	var img = document.getElementById('CarIDF');
	img.src = sImg;
}

function wopen(imgName, w , h, Title)
{
var wo = window.open("", "abc", "width = " + w + " , height = " + h + ", scrollbars=0, status=0");
wo.document.open();
var win = "";
win = "<html><head><title>";
win += Title;
win += "</title></head>"
win += "<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'>";
win += "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center'>";
win += "<a href='#' onClick='self.window.close();'><img src='" + imgName + "' width='" + w + "' height='" + h + "' border='0' alt='" + Title + "'></a>";
win += "</td></tr></table>";
win += "</body></html>";
w += 8;
h += 26;
wo.window.resizeTo(w, h);
wo.document.write(win);
wo.window.focus();
wo.document.close();
}
















