if (document.getElementById){
document.write('<style type="text/css">\n')
document.write('.dropcontent{display:none;}\n')
document.write('</style>\n')
}

function contractall(){
if (document.getElementById){
var inc=0
while (document.getElementById("dropmsg"+inc)){
document.getElementById("dropmsg"+inc).style.display="none"
inc++
}
}
}


function ellenorizz_search()
{

if (!document.search.searchfor.value)
     {
        alert("Kérem adjon meg egy keresőszót!");
        return false;
     }

 return true;

}

function ellenorizz_login()
{

if (!document.login.username.value)
     {
        alert("Kérem adjon meg egy felhasználónevet!");
        return false;
     }
if (!document.login.password.value)
     {
        alert("Kérem adjon meg egy jelszót!");
        return false;
     }

 return true;

}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}





function expandone(){
if (document.getElementById){
var selectedItem=document.dropmsgform.dropmsgoption.selectedIndex
contractall()
document.getElementById("dropmsg"+selectedItem).style.display="block"
}
}

function expandone_from_map(ElementId){
contractall()
document.getElementById("dropmsg"+ElementId).style.display="block"
}

if (window.addEventListener)
window.addEventListener("load", expandone, false)
else if (window.attachEvent)
window.attachEvent("onload", expandone)


