function marker_Over(id) {
	//window.document.all(id).style.backgroundColor = '#BEC5EB';
	document.getElementById(id).style.backgroundColor = '#BEC5EB';
}

function marker_Out(id) {
	document.getElementById(id).style.backgroundColor = '#FFFFFF';
}

function marker_Over_Now(id) {
	document.getElementById(id).style.backgroundColor = '#2941BD';
}

function marker_Out_Now(id) {
	document.getElementById(id).style.backgroundColor = '#BEC5EB';
}

function on()
{
window.event.srcElement.style.filter = "color Alpha(Opacity=80, FinishOpacity=80, Style=1)";
}

function off()
{
window.event.srcElement.style.filter = "gray Alpha(Opacity=15, FinishOpacity=15, Style=1)";
}

function bigFoto(src, w, h, title) {
var winParam = 'scrollbars=no, width=' + w +', height=' + h + ', location=no, toolbar=no, directories=no, status=no ,menubar=no, resizable=no, screenX=180,screenY=166, top=166, left=180';    
var t = Math.random();
t = t*1000000;
t = Math.round(t); 

var name = 'nm' + t;
subs=window.open('', name, winParam);
subs.document.write('<html>' + 
'<head>' + 
'<title>' + title + '</title>' + 
'</head>' + '<body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>' +
'<a href="Ƞ뱻" onclick="window.close();" title="Ƞ뱻"><img src="'  + src + '" border="0"></a>' + 
'</body>' +
'</html>')
}

function show_brands(id)
{
	var previd = document.previd;
	el = document.getElementById(previd);
	var activid = document.activid;
	activel = document.getElementById(document.activid);
	if ((el) &&  (previd != id) && (activid != previd) /**/ && (activid != id) /**/
		/*( (activid != id) || (activid == id && activel.style.display == "none" ) )*/ )
		{el.style.display = "none";}
	
	el = document.getElementById(id);
	if ((el) && (el.style.display=="none"))
		{el.style.display = "block";}
	else {el.style.display = "none";}
	if (activid != id) document.previd=id;
}