<!--
		var popupspeichern_window=null;
		function popupspeichern(stat,url)
		{
		    if(stat != 0)
		    {
		      if(popupspeichern != null) popupspeichern.focus(); 
		      else
		      {
		        var popupspeichern=open(url, "Popupspeichern","width=270,height=150,left=300,top=200,scrollbars=no");
		        popupspeichern_window=popupspeichern;
		      }
		    }
		    else
		    {
		      if(popupspeichern_window != null) popupspeichern_window.close();
		    }
		}

		function LayerMaster(Location,VisString) {
			//SET-UP INVERSES
			if (VisString == 'hidden') { var InverseVisString = 'visible'; }
			if (VisString == 'visible') { var InverseVisString = 'hidden'; }
			//DETECT BROWSER
			var browser = navigator.appName;
			 
			//NETSCAPE NAVIGATOR VERSION
			if (browser == 'Netscape') {
			 	if (document.layers != null) {
			 		document.layers[Location].visibility = VisString; 
					//document.layers['original'].visibility = InverseVisString;
				}
			}
			//INTERNET EXPLORER VERSION
			if (browser == 'Microsoft Internet Explorer') {
				if (document.all != null) { 
					document.all[Location].style.visibility = VisString; 
					//document.all['original'].style.visibility = InverseVisString;
				}
			}
		}
		//-->