function koordinate(menu,x)
{
if (navigator.appName.indexOf("Netscape") != -1){
showNS(menu);}
if (navigator.appName.indexOf("Explorer") != -1){
showIE(menu);}
if (browser.indexOf("opera") != -1){
showIE(menu);}
else{
showIE(menu,x);
}

}

function showNS(menu,x){
window.showMenu(menu,x,176);
}


function showIE(menu,x)
{
Y = 260;
X = x;
window.showMenu(menu,X,Y);
}
