<!--
var last_over = null;

if (self.parent.frames.length != 0)
	self.parent.location.replace(document.location.href);

function menu_on(id)
{
	last_over = id;
	eval(id + ".style.background = \"url(/i/x.gif)\"");
	eval(id + ".style.backgroundColor = \"#ff9300\"");
}
function menu_off()
{
	if (last_over != null)
	{
		eval(last_over + ".style.background = \"url(/i/bg-ind.gif)\"");
		eval(last_over + ".style.backgroundColor = \"#000000\"");
		last_over = null;
	}
}

function show_iso()
{
	var url = "/iso.html";
	if (navigator.appName=="Microsoft Internet Explorer")
		windowopen(url, 450, 250);
	else
		location.href=url;
}

function windowopen(url, width, height)
{
	var w, h, s;
	w = screen.width/2;
	h = screen.height/2;
    s = 'top='+(h-height/2-20)+',left='+(w-width/2)+','+'width='+width+',height='+height+',';
    window.open(url, "vs_iso", s + 'toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no');
}
//-->
