/*******************************************************
**
** Fair-Werkstatt.eu | Potsdam
**
** created by: 	VCAT Consulting GmbH
**				www.vcat.de
**
*******************************************************/
/**** Konstanten **/
var idNavi = "nav";
var idSecNavi = "secnavi_content";
var stdSecAct= "act";

/**** Variabel **/
var act=0;
var secActClass="";

/*******************************************************/

function init (){
	getAct();
	document.getElementById("prinavi_content").className ="showBg"+act+"0";
	if (act>0)	{ document.getElementById("secnavi_content").className ="act";	secActClass =stdSecAct; }
}
function show_bg(id)	{
	document.getElementById("prinavi_content").className =" showBg"+act+id;
	document.getElementById("secnavi_content").className =stdSecAct;
}
function hide_bg(id)	{
	document.getElementById("prinavi_content").className =" showBg"+act+id;
	document.getElementById("secnavi_content").className =secActClass;
}

function getAct()	{
	navi = document.getElementById(idNavi).getElementsByTagName("a");
	for (i=0; i<navi.length; i++)	{
		suchStr = navi[i].className;
		result= suchStr.search(/act/);
		if (result !=-1)	{	act=i+1;		}
	}	
}


/*******************************************************/

/* META */
function openwdw(id)	{
	if (id)	{

		var myUrl = 'http://apiduo.klicktel.de/kostenlosanrufen/initiateCall.php?id=QMJYGZGQA13B2F&website=KLICKTEL'
		//'http://apiduo.klicktel.de/kostenlosanrufen/initiateCall.php?id=QGRSQRJQF5629F&website=KLICKTEL'; 
		//'http://api.klicktel.de/freecall/initiateCall.php?id=UWVLQXG6C76F2&offset=';
		var myTitle = 'FWKlicktel';
		var myParams = 'width=530,height=520,left=100,top=200,dependent=yes,menubar=no,resizable=no,status=no';
		var gratis = window.open(myUrl,myTitle,myParams);
	  	gratis.focus();
	}
}
function showBookmark(status)	{
	document.getElementById("socialBookmarks").style.visibility = status;
}
