function ShowElseActive( item0 , item1 , item2, item3 ) {	if (document.getElementById(item1) != null)		{		document.getElementById(item0).style.display = '';		}		if (document.getElementById(item2) != null)		{		document.getElementById(item0).style.display = '';		}		if (document.getElementById(item3) != null)		{		document.getElementById(item0).style.display = '';		}}function ShowActive( activeitem , activebutton ) {if (document.getElementById(activeitem) != null) 	{	document.getElementById(activeitem).style.display = '';	document.getElementById(activebutton).style.backgroundImage = 'url(' + urltotemplates + 'images/teaser_col_left_hover.jpg)';	}}function ShowActiveLink( activelink ) {if (document.getElementById(activelink) != null)	{	document.getElementById(activelink).style.fontWeight = 'bold';	document.getElementById(activelink).style.backgroundImage = 'url(' + urltotemplates + 'images/teaser_col_left_sub_hover.jpg)';	}}function SBshow( myitem, button ) {	document.getElementById(myitem).style.display = '';	document.getElementById(button).style.backgroundImage = 'url(' + urltotemplates + 'images/teaser_col_left_hover.jpg)';}function SBhide( myitem ) {	document.getElementById(myitem).style.display = 'block';	}function SBtoggle( myitem ) {	if( document.getElementById(myitem).style.display == 'block' ) {			SBshow( myitem );		}	else {			SBhide( myitem );		}}function SBswitchimg( myimg, switchto, switchback ) {    	    ArraySwitchTo = switchto.split('/');		var imgsrc = document.getElementById(myimg).src;		ArrayImg = imgsrc.split('/');			//alert (ArraySwitchTo[ArraySwitchTo.length-1]+'  '+ArrayImg[ArrayImg.length-1]);		//if( document.getElementById(myimg).src != switchto ) {	if( ArraySwitchTo[ArraySwitchTo.length-1] != ArrayImg[ArrayImg.length-1] ) {			document.getElementById(myimg).src = switchto;		}	else {			document.getElementById(myimg).src = switchback;		}}/* DEFAULT OPEN */function OPENshow( myitem ) {	document.getElementById(myitem).style.display = '';}function OPENhide( myitem, button ) {	document.getElementById(myitem).style.display = 'none';	document.getElementById(button).style.backgroundImage = '';	}function OPENtoggle( myitem, button ) {	if( document.getElementById(myitem).style.display == 'none' ) {			SBshow( myitem, button );		}	else {			OPENhide( myitem, button );		}}function OPENswitchimg( myimg, switchto, switchback ) {    	    ArraySwitchTo = switchto.split('/');		var imgsrc = document.getElementById(myimg).src;		ArrayImg = imgsrc.split('/');			//alert (ArraySwitchTo[ArraySwitchTo.length-1]+'  '+ArrayImg[ArrayImg.length-1]);		//if( document.getElementById(myimg).src != switchto ) {	if( ArraySwitchTo[ArraySwitchTo.length-1] != ArrayImg[ArrayImg.length-1] ) {			document.getElementById(myimg).src = switchto;		}	else {			document.getElementById(myimg).src = switchback;		}}