//<!--
function GPool_windowopen(url,name,option)
{
	var opener = window.open(url,name,option);
}
function select(OBJ)
{
	OBJ.style.color='#8492B5';
}
function notselect(OBJ)
{
	OBJ.style.color='#B5BED6';
}
function status_text(TXT)
{
	//parent.frames[4].status(TXT);
	try{
	parent.frames[5].document.open();
	parent.frames[5].document.write('<html>');
	parent.frames[5].document.write('<head>');
	parent.frames[5].document.write('<link rel=stylesheet type=\"text/css\" media=\"screen\" href=\"/css/gpool_admin.css\">');
	parent.frames[5].document.write('</head>');
	parent.frames[5].document.write('<body>');
	parent.frames[5].document.write('<p align=\"center\" class=\"status_line\">'+TXT+'</p>');
	parent.frames[5].document.write('</body>');
	parent.frames[5].document.close();
	}catch(error){
	}
}
function write_new(TXT)
{
	document.write('<html>');
	document.write('<script src=\"/jscript/js.js\" type=\"text/javascript\" language=\"javascript1.2\"><\/script>');
	document.write('<script language=\"javascript\">');
	//document.write('function status_text(TXT)');
	//document.write('{');
	//document.write('write_new(TXT);');
	//document.write('}');
	document.write('</script>');
	document.write('<body>');
	//document.write('<div class=\"status_text\">'+TXT+'</div>');
	document.write('</body>');
	document.write('</html>');
}
function duplicate_save()
{
  try{ status_text('Vorgang gestartet! Bitte warten...');
  }catch(error){
  }
  
  if (document.getElementById)
   document.getElementById("save_button").style.visibility = "hidden";
}
function refresh_all() 
{   try{
		parent.frames['navigation'].location.reload();
	}catch(error){
	}
		
}
function change(IMGNR, onoff)
	{
	 	imgobj=document.getElementById("img"+IMGNR);
		textobj=document.getElementById("text"+IMGNR);
	  if(onoff==1)
		{
			imgobj.style.display='none';
			textobj.style.display='block';
		}
		else
		{
		 	imgobj.style.display='block';
			textobj.style.display='none';
		}
	}
	function moveto(section)
	{
		top.location.href="http://www.lebensministerium.at/"+section;
	}
//-->
