function ShowMenu(id)
{
    y=document.getElementById("menu_"+id).offsetTop+71;
    x=document.getElementById("menu_"+id).offsetLeft;
    width=Math.floor((document.body.clientWidth-947)/2)+389;
    var browser = navigator.appName;
    if(browser=="Opera" || browser=="Netscape") 
        document.getElementById(id).style.left=x + 'px'; 
    else
        document.getElementById(id).style.left=(width+x) + 'px';
    document.getElementById(id).style.top=y + 'px';
    document.getElementById(id).style.display="block";
}

function ShowMenu2(id)
{
    y=document.getElementById("menu_"+id).offsetTop+112;
    x=document.getElementById("menu_"+id).offsetLeft-6;

    width=Math.floor((document.body.clientWidth-947)/2)+389;
    
    var browser = navigator.appName;
    if(browser=="Opera" || browser=="Netscape")
    {
        document.getElementById(id).style.left=x + 'px';  
        document.getElementById(id).style.top=(y-83) + 'px';
    }
    else
    {
        document.getElementById(id).style.left=(width+x) + 'px';
        document.getElementById(id).style.top=y + 'px';
    }
   
    
    document.getElementById(id).style.display="block";
    
   
}

function ShowMenu3(id,posun)
{ 

    var browser = navigator.appName;
    y=document.getElementById("menu_"+id).offsetTop+210;
    x=document.getElementById("menu_"+posun).offsetLeft+104;
    
    
    width=Math.floor((document.body.clientWidth-947)/2)+389;
    
    var browser = navigator.appName;
    if(browser=="Opera" || browser=="Netscape")
    {
        document.getElementById(id).style.left=x + 'px';  
      
    }
    else
    {
        document.getElementById(id).style.left=(width+x) + 'px';
     
    }
    document.getElementById(id).style.top=(y-83) + 'px';
  
   
   
    document.getElementById(id).style.display="block";
    
   
}

function HideMenu(id)
{
    document.getElementById(id).style.display="none";
}

function RollUp(pocet)
{
    var produkts="produkt_"+(pocet-1);
   // alert(produkts);
    if(parseInt(document.getElementById(produkts).style.top)>=370)
    for(i=0;i<pocet;i++)
    {
        var pozice=0;
        document.getElementById("produkt_"+i).style.top=(parseInt(document.getElementById("produkt_"+i).style.top)-95) + 'px';
        pozice=parseInt(document.getElementById("produkt_"+i).style.top);

        if(pozice<450)
            document.getElementById("produkt_"+i).style.display="block";
        if(pozice<80)
            document.getElementById("produkt_"+i).style.display="none";
    }
}

function RollDown(pocet)
{
    var produkts="produkt_"+(pocet-1);
    if(parseInt(document.getElementById("produkt_0").style.top)<=160)
        for(i=0;i<pocet;i++)
    {
        var pozice=0;
        document.getElementById("produkt_"+i).style.top=(parseInt(document.getElementById("produkt_"+i).style.top)+95) + 'px';
        pozice=parseInt(document.getElementById("produkt_"+i).style.top);
        if(pozice>80)
            document.getElementById("produkt_"+i).style.display="block";
        if(pozice>450)
            document.getElementById("produkt_"+i).style.display="none";
    }

}

function DisplayImage(picURL,picWidth,picHeight,picTitle){
    img=new Image();
    img.src=picURL;
    newWindow=window.open(picURL, "Janouch Dental - detail", "width="+img.width+",height="+img.height+",menubar=no,resizable=no,left=0,top=0")
	/*newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight)
	
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)*/
	newWindow.focus()
	}
