function GetMonth(intMonth)	{
  	var MonthArray = new Array("Januar", "Februar", "M&auml;rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember");
return MonthArray[intMonth];
}

function getDateStr(){
  	var today = new Date();
  	var year = today.getYear();
  	if(year<1000) year+=1900;
  	var todayStr = GetMonth(today.getMonth()) + " " + today.getDate();
  	todayStr += ", " + year;
return todayStr;
}

function initTabs(tab) {
	var countries=new ddtabcontent(tab)
	countries.setpersist(true)
	countries.setselectedClassTarget("link") //"link" or "linkparent"
	countries.init()
}

function disclaimer(){
	//init vars
	var domain = ''; domain_ext = ''; page = ''; page_ext = ''; anchor_text = ''; lk = ''; href = '';
	domain = "gambzine";
	domain_ext = "com/de";
	page = "verzicht";
	page_ext = "htm";
	anchor_text = 'Verzicht';

	lk = "http://www." + domain + '.' + domain_ext + '/' + page + '.' + page_ext;
	href = '<a href="' + lk + '">' + anchor_text + '</a>';
	document.write(href);
}




