
 //send mail
function sendemail() {
  var elemName = "info";
  var elemAt = "@";
  var elemDomini = "tecnosolution";
  var elemDot = "."
  var elemTerminal = "net";
  var mail = elemName+''+elemAt+''+elemDomini+''+elemDot+''+elemTerminal;
  var copy = null;//copie conoscenza
  var object = "E-mail dal sito www.tecnosolution.net";
  var message = "Contatto diretto:\n";
  alert("Stai per inviare una e-mail a Tecno Solution :\nSelezionate il servizio di posta elettronica preferito, se non impostato di default!");     
  location.href = "mailto:" + mail + "?cc=" + copy + "&Subject=" + object + "&Body=" + message;
//alert("mailto:" + mail + "?cc=" + copy + "&Subject=" + object + "&Body=" + message);
}
//end
//call phone
function callphone() {
  var elemNation = "+"+39;
  var elemNum = 0522326274;
   alert("Stai per effettuare una chiamata telefonica dal web: \nseleziona il servizio che preferisci per la chiamata, se non impostato di default!");  
  location.href = "callto:" + elemNation + elemNum;
//alert("callto:" + elemNation + elemNum);
}
//end
//send fax
function sendfax() {
  var elemNation = "+"+39;
  var elemNum = 05221710935;
      alert("Stai per effettuare una chiamata telefonica dal web per l'invio di un fax: \nseleziona il servizio che preferisci per l'invio, se non impostato di default!");  
  location.href = "callto:" + elemNation + elemNum;
//alert("callto:" + elemNation + elemNum);
}
//end
//call phone
function callmobile() {
  var elemNation = "+"+39;
  var elemNum = "";
   alert("Stai per effettuare una chiamata telefonica dal web: \nseleziona il servizio che preferisci per la chiamata, se non impostato di default!");
  location.href = "callto:" + elemNation + elemNum;
//alert("callto:" + elemNation + elemNum);
}
//end



function open_room_one() {
   var w = 1000;
   var h = Math.floor(screen.height);
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open("room_one.html","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +",scrollbars=no,toolbar=no,status=no, menubar=no");
 }
 function open_room_two() {
   var w = 1000;
   var h = Math.floor(screen.height);
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open("room_two.html","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +",scrollbars=no,toolbar=no,status=no, menubar=no");
 }
 
 
