/* 
# ----------------------------------------------------- #
#		  	     BESTELLVORGANG-SCRIPTE	 				#
#					    (c) jvg							#
# ----------------------------------------------------- #
*/


function show_right_massage(Me)
{
var t = document.getElementById(Me).style;

if( t.display == "none" )
	{
	    t.display 	= "block";

	}
}//end

function show_right_massage_hide(Me)
{
var t = document.getElementById(Me).style;

if( t.display == "block" )
	{
	    t.display 	= "none";

	}
}//end