//------------------------------------------------------------------------------
//
// HINTERGRUNDWECHSEL MENÜ
//
//------------------------------------------------------------------------------



old_id='dummy';
function XS_ChangeBgcolor(new_id)
{
   var onover='#ffffff';
   var onout='#efefef';

	if(old_id != new_id)
	{ 
	  		document.getElementById(new_id).style.backgroundColor=onover;
   		document.getElementById(old_id).style.backgroundColor=onout;
			old_id=new_id;
  	}    
 	else
	{
 	
 		if(document.getElementById(new_id).style.backgroundColor==onover || document.getElementById(new_id).style.backgroundColor!='')
		{
			document.getElementById(new_id).style.backgroundColor=onout;
			old_id='dummy';
		}
 	
 	}
}

///*last modified
//-------------------------------------------------------------------------------------*/


function XS_LastModified()
{ 
        var dLM = new Date(Date.parse(document.lastModified));

			var year = dLM.getFullYear();
	var date= dLM.getDate();
        var month = dLM.getMonth()+1;
        var hours = dLM.getHours();
        var minutes = dLM.getMinutes();
        var seconds = dLM.getSeconds();

        if (date<10) date = "0"+date;
        if (month<10) month = "0"+month;
        if (hours<10) hours = "0"+hours;
        if (minutes<10) minutes = "0"+minutes;
        if (seconds<10) seconds = "0"+seconds;

        document.write("ON "+year+"-"+month+"-"+date+"");

} 


///*formmailer
//-------------------------------------------------------------------------------------*/

function formmailer(myform, windowname)
{
if (! window.focus)return true;
window.open('', windowname, 'top=100,left=100,height=200,width=200,location=no,resizable=no,scrollbars=no,status=no');
myform.target=windowname;
return true;
}
