function pD(s)
 {
 	D = new Date();
	J = D.getFullYear();
	M = D.getMonth()+1;
	if(M<10)M="0"+M;
	T = D.getDate();
	if(T<10)T="0"+T;
	if(s=="d")
	 {
	 	o = T+"."+M+"."+J;
	 	o = "www.storconsult.de , "+o;
	 }
	else
	 {
	 	o = J+"-"+M+"-"+T;
	 	o = "www.storconsult.de , "+o;
	 }
	return o;
 }
