function Today() {

var right_now=new Date();
var month=(right_now.getMonth()+1);
var day_of_the_month=right_now.getDate();
var day_of_the_week=right_now.getDay();
var representation_day="";
var representation_month="";

if(day_of_the_week == 0 ){
  representation_day_of_the_week=""
}
if(day_of_the_week == 1 ){
  representation_day_of_the_week=""
}
if(day_of_the_week == 2 ){
  representation_day_of_the_week=""
}
if(day_of_the_week == 3 ){
  representation_day_of_the_week=""
}
if(day_of_the_week == 4 ){
  representation_day_of_the_week=""
}
if(day_of_the_week == 5 ){
  representation_day_of_the_week=""
}
if(day_of_the_week == 6 ){
  representation_day_of_the_week=""
}

if(month == 1 ){
  representation_month="/1:"
}
if(month == 2 ){
  representation_month="/2:"
}
if(month == 3 ){
  representation_month="/3:"
}
if(month == 4 ){
  representation_month="/4:"
}
if(month == 5 ){
  representation_month="/5:"
}
if(month == 6 ){
  representation_month="/6:"
}
if(month == 7 ){
  representation_month="/7;"
}
if(month == 8 ){
  representation_month="/8:"
}
if(month == 9 ){
  representation_month="/9:"
}
if(month == 10 ){
  representation_month="/10:"
}
if(month == 11 ){
  representation_month="/11:"
}
if(month == 12 ){
  representation_month="/12:"
}
document.write(representation_day_of_the_week," ",day_of_the_month,"",representation_month);

}

