/*********************************************************************
* SwitchMenuSet script - by Roman Fanta of http://fansoft.com.ua/  E-mail: fantic-net@rambler.ru
*********************************************************************/
if (document.getElementById)
{ 
document.write('<style type="text/css">\n')
document.write('#sub1{display: none;}\n')
document.write('#sub2{display: none;}\n')
document.write('#sub3{display: none;}\n')
document.write('#sub4{display: none;}\n')
document.write('#sub5{display: none;}\n')
document.write('#sub6{display: none;}\n')
document.write('#sub7{display: none;}\n')
document.write('#sub8{display: none;}\n')
document.write('#sub9{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenuOffSet(obj)
{
	if(document.getElementById)
	{
	var el = document.getElementById(obj);
	  if (el.style.display !== "none")
	  {
	  el.style.display = "none"; 
	  }
	}
}

function SwitchMenuOnSet(obj)
{
	if(document.getElementById)
	{
	var el = document.getElementById(obj);
	  if (el.style.display !== "inline")
	  {
	  el.style.display = "inline"; 
	  }
	}
}

function SwitchMenuOn(obj)
{ 
setTimeout("SwitchMenuOnSet('"+obj+"')", 300);
}
 
function SwitchMenuOff(obj)
{ 
setTimeout("SwitchMenuOffSet('"+obj+"')", 300);
}


function open_wind(link,w,h,name) {
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=no";
	newWin = window.open(link,name,win);
	newWin.focus();
}

function change_foto(file,img,url,alink){
	document.getElementById(img).src=file;
	document.getElementById(alink).href=url;
}

