 

function click() {
 if (event.button==2) {
 alert('\n\n  Agenzia Viaggi Ortobene - Via Gramsci 24b,  08100 Nuoro \n\n Tel 0784253109 - Fax 0691273341 - \n\n email  info@viaggiortobene.com \n\n p.i. 01175010915 - aut.Reg.245 del 20/07/05\n\n Designed & Published by RobCo')

 }
 }
document.onmousedown=click
 

 
  <!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat

   message     = "Agenzia Viaggi Ortobene ^" +
	 	         "L'Agenzia Ortobene si occupa di turismo a 360°  ^" +
				 "dal biglietto navale al soggiorno All Inclusive.^" +
				 "Contattaci, cercheremo insieme di realizzare il tuo sogno.  ^" +
				"Inoltre per i Futuri Sposi la possibilita' di realizzare la Lista Nozze ^" +
                                                                 "  ^" +
				"  ^" +
				"  ^"





  scrollSpeed = 60
  lineDelay   = 1000
  //scrollSpeed = 60
  //lineDelay   = 3000
  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)
 
 
