var active = false; var sb = false; function swMenu(item, act, cnt) { switch(act) { case 'show': active = true; var tmpitem = item.replace(/-/g, " "); document.getElementById('menutxt').src = 'http://www.life-in-andalusia.com/images/dyn/menu/ffffff/'+ tmpitem + '.png'; document.getElementById(item).src = 'http://www.life-in-andalusia.com/images/site/menu/'+ cnt + '_t.jpg'; clearTimeout(sb); break; case 'hide': if(item != curMenuTxt) { active = false; document.getElementById('menutxt').src = 'http://www.life-in-andalusia.com/images/dyn/menu/ffffff/.png'; document.getElementById(item).src = 'http://www.life-in-andalusia.com/images/site/menu_hide_'+ cnt + '.jpg'; sb = setTimeout("if(active != true) document.getElementById('menutxt').src = 'http://www.life-in-andalusia.com/images/dyn/menu/ffffff/'+ curMenuTxt + '.png'",1000); } break; } } function pop(url,w,h) { var popwin = null; Left= (screen.width) ? (screen.width-w) /2:0; Top= (screen.height) ? (screen.height-h) /2:0; sett='width='+w+',height='+h+',top='+Top+',left='+Left+',scrollbars=no,status=no'; popwin = window.open(url,'pop',sett); popwin.focus(); }