function confirmSubmit()
{
  var agree=confirm("Sunte-ti sigur ca vreti sa continuati?");
  if (agree) return true ;
  else return false ;
}

function openPopUp(){
  //return true;
  var win = new Window({id: "win2", className: "alphacube", title: "www.tmtmedia.ro", width:250, height:150, top: 0}); 
  content  = "<h3>";
  content += "  <a href='http://www.tmtmedia.ro'>";
  content += "    Consultati-ne pentru oferte cu discount-uri SPECIALE!";
  content += "  </a>";
  content += "</h3>";
  content += "<a href='http://www.tmtmedia.ro'>";
  content += "  <img src='images/_bannere/sig_tmt.jpg' alt='' width='220' />";
  content += "</a>";
  win.getContent().innerHTML = content;
  win.setDestroyOnClose(); 
  win.show();
  win.setZIndex(1234);
  win.toFront();
}

function addClick(){
  var url = 'clickAjax.php';
  var myAjax = new Ajax.Request(url);
}

//Event.observe(window, "load", openPopUp);