//playSwf("134x49_torino.swf",134,49);
function playSwf(fPath,width,height) 
{	
	var str;
	str = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+width+"\" height=\""+height+"\">\n\r";
	str += "	<param name=\"movie\" value=\""+fPath+"\" />\n\r";
	str += "	<param name=\"quality\" value=\"high\" />\n\r";
	str += "	<param name=\"wmode\" value=\"transparent\" />\n\r";
	str += "	<embed src=\""+fPath+"\" quality=\"high\"  width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\"></embed>\n\r";
	str += "</object>\n\r";
	document.write(str);
}
function alpha(t,n)
{
	var j;
	t = document.getElementById(t)
	if (n==1){
		t.style.filter = 'alpha(opacity=25)'
	}else
	{

		t.style.filter = 'alpha(opacity=100)'
	}
}
if ((navigator.appName.indexOf('Microsoft')+1)) {
document.write('<style type="text/css"> .opacity1 {filter:alpha(opacity=25)} .opacity2 {filter:alpha(opacity=100)} </style>'); }
if ((navigator.appName.indexOf('Netscape')+1)) {
document.write('<style type="text/css"> .opacity1 {-moz-opacity:0.5} .opacity2 {-moz-opacity:1} </style>'); }
else {
document.write(''); }

function showsubmenu(sid,j)
{
	var t
	whichEl = eval("submenu" + sid);
	if (whichEl.style.display=='none')
	{
		t = 1
	}
	else{
		t = 0
	}
    
	for(i=1;i<j+1;i++){
		whichEl = eval("submenu" + i);
		eval("submenu" + i + ".style.display=\"none\";");
	}
	
	if(t==1)
	{
		eval("submenu" + sid + ".style.display=\"\";");
	}
	else{
		eval("submenu" + sid + ".style.display=\"none\";");
	}    
}