function selectvousetes()
    	{
        document.getElementById('vousetesadmin').style.display = "none";
        document.getElementById('vousetespro').style.display = "none";
        document.getElementById('vousetesassos').style.display = "none";

    	sel = document.getElementById('vousetes');     fieldval= sel.options[sel.selectedIndex].value;
        document.getElementById('vousetes'+fieldval).style.display = "block";
        }



function togimgon(idimg)
	{
	document.getElementById(idimg).src = idimg+'1.jpg';
    }

function togimgoff(idimg)
	{
	document.getElementById(idimg).src = idimg+'0.jpg';
    }




function toggleLayer(whichLayer)
	{
	if (document.getElementById)
		{

		// this is the way the standards work
		var style2 = document.getElementById(whichLayer).style;
		style2.display = style2.display? "":"block";
		}
	    else if (document.all)
	    {
	    // this is the way old msie versions work
	    var style2 = document.all[whichLayer].style;
	    style2.display = style2.display? "":"block";
	    }
	    else if (document.layers)
	    {
	    // this is the way nn4 works
	    var style2 = document.layers[whichLayer].style;
	    style2.display = style2.display? "":"block";
	    }
    }


function maploaddetail(idcat)
	{
	//new Ajax('./AJAXmapdetails.php', { postBody : 'idcat='+idcat, method: 'post',update:'mapdetail' }).request();
    //var myRequestmapdetails = new Request({method: 'get', url: './AJAXmapdetails.php'});
	//myRequestmapdetails.send('name=john&lastname=dorian');
	
	
	$('mapdetail').load('./AJAXmapdetails.php?idcat='+idcat);


	
	}