
//**************SNYW@re****************************************
//  +++ "Datums Ausgabe String" Script +++
//  haben Sie Fragen ? Mail an: info@Masterwebdesign.de
//**************SNYW@re****************************************

function BrInf(){
  this.name = navigator.appName;
  this.codename = navigator.appCodeName;
  this.version = navigator.appVersion.substring(0,4);
  this.platform = navigator.platform;
  this.javaEnable = navigator.javaEnabled();
  this.screenWidth = screen.width;
  this.screenHeight = screen.height;
  this.userAgent = navigator.userAgent;
}
var br_obj = new BrInf();
    var tag, m_month;
		var constr = new Date();
		var tag_z = constr.getDay();
		var m_tag = constr.getDate();
		    m_month = constr.getMonth();
			  m_month += 1;
		var jeah = constr.getYear();
			if (br_obj.name.indexOf("Microsoft") >= 0)  {jeah=jeah;}
			if (br_obj.name.indexOf("Netscape") >= 0)   {jeah+=1900;}
			if (br_obj.userAgent.indexOf("Netscape6") >=0) {jeah=jeah;}
			if (br_obj.userAgent.indexOf("Opera 7") >=0)   {jeah+=1900;}
			if (br_obj.userAgent.indexOf("Opera 6") >=0)   {jeah+=1900;}
			if (br_obj.userAgent.indexOf("Opera 5") >=0)   {jeah+=1900;}
			if (br_obj.userAgent.indexOf("Opera 3.6") >=0) {jeah=jeah;}
      var jeah_sh = new String(jeah);
      jeah_sh = jeah_sh.substring(2);
			if 	(tag_z == 1)     {tag = "Mo";}
			else if (tag_z == 2) {tag = "Di";}
			else if (tag_z == 3) {tag = "Mi";}
			else if (tag_z == 4) {tag = "Do";}
			else if (tag_z == 5) {tag = "Fr";}
			else if (tag_z == 6) {tag = "Sa";}
			else if (tag_z == 0) {tag = "So";}
			if 	(m_month == 1)     {m_month = "Jan";}
			else if (m_month == 2) {m_month = "Feb";}
			else if (m_month == 3) {m_month = "Mär";}
			else if (m_month == 4) {m_month = "Apr";}
			else if (m_month == 5) {m_month = "Mai";}
			else if (m_month == 6) {m_month = "Jun";}
			else if (m_month == 7) {m_month = "Jul";}
			else if (m_month == 8) {m_month = "Aug";}
			else if (m_month == 9) {m_month = "Sep";}
			else if (m_month == 10){m_month = "Okt";}
			else if (m_month == 11){m_month = "Nov";}
			else if (m_month == 12){m_month = "Dez";}

