/*  Realizat Stefan Vilceloiu  (c) 2008  stefan@irisoft.com.ro*/function arata(elmnt){    document.getElementById(elmnt).style.visibility = 'visible';    document.getElementById(elmnt).style.display = 'block';}function ascunde(elmnt){    document.getElementById(elmnt).style.visibility = 'hidden';    document.getElementById(elmnt).style.display = 'none';}function mm_open(theURL,winName,features) {   window.open(theURL,winName,features);}
