function menuover(param){
	document.getElementById(param).style.backgroundColor='#F4F1E9';
}
function menuout(param){
	document.getElementById(param).style.backgroundColor='';
}
function showhide (elementId) {
	 if( document.getElementById ) {
        //DOM
        var theElement = document.getElementById( elementId );
    } else {
        if( document.all ) {
            //Proprietary DOM
            var theElement = document.all[ elementId ];
        } else {
            //Create an object to prevent errors further on
            var theElement = new Object();
        }
    }
	tbl =  theElement;
	if (tbl.style.display == 'none')
		tbl.style.display = 'inline';
	else 
		tbl.style.display = 'none';
}
function flash_fix(f) {
	document.write(f); 
}
//--- start open window for gallery -------------------------------------
var newWin = null;
function NewWindow(param){
        // Create and set window option variables.
        var windowBars = 'directories=no,location=no,menubar=no,status=no,toobar=no';
        var windowOptions = 'scrollbars=no,width=600,height=450,resizable=yes,left=200,top=100';
        var windowFeatures = windowBars + ',' + windowOptions;
        var childWindow = '../lib/galerie.php?img='+param;

        // Open the child window
    	newWin = window.open(childWindow, 'contactus', windowFeatures);
	    window.newWin.focus();
}
//--- end open window ----------------------------------------------------
function clear_cauta(e){
		if(e.value=="NEWSLETTER")
			e.value="";
	}
function fill_cauta(e){
		if(e.value=="")
			e.value="NEWSLETTER";
	}