function MenuOnMouseOver(element)
{
	if(element)
	{
		element.className="mouseover";
		window.status=element.title;
	}
	/*if(element && element.style!=null)
		element.style.backgroundColor="831CA7";*/
}

function MenuOnMouseOut(element)
{
	if(element)
	{
		element.className="normal";
		window.status="";
	}
		
	/*if(element && element.style!=null)
		element.style.backgroundColor="blue";*/

}

function MenuOnClick(element)
{
   if(element && element.id!=null)
   {
      if(element.id == "http://www.firmont.com.pl/nowa/index.php")
      {
        newWnd = window.open(element.id);
        newWnd.focus();
      }
      else
      {         
        var obj;
        if(document.getElementById)
        {
    		obj=document.getElementById("iframe_DATA");
    	}
    	
    	//obj= document.all("iframe_DATA");
		if(obj && obj.src!=null)
		   obj.src=element.id;

     }
   }	
}

