function hi_there(){
RightNow = new Date();
document.write((RightNow.getMonth()+1) + "." + RightNow.getDate() + "." + RightNow.getFullYear());
}

function OpenShowWindow(ss) {
  ssw = window.open(ss, null,"scrollbars = yes,left=100,top=0,height=670,width=800");
  ssw.moveTo(50,0); 
}

function OpenNewWin(ss) {
  ssw = window.open(ss, null,"left=100,top=0,height=700,width=550");
  ssw.moveTo(50,0); 
}

function CloseMyWindow() {
 window.close(); 
}