// JavaScript Document

if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET","/xml/offers-rss-it.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML; 

function displayOffers(bob)
{

var d=xmlDoc.getElementsByTagName("date");
bookby=(d[0].getElementsByTagName("bookby")[0].childNodes[0].nodeValue);
bookby2=(d[0].getElementsByTagName("bookby2")[0].childNodes[0].nodeValue);

var x=xmlDoc.getElementsByTagName("offer");
for (i=0;i<x.length;i++)
  { 

school=(x[i].getElementsByTagName("school")[0].childNodes[0].nodeValue);

if(bob==school){
title=(x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue);
linkid=(x[i].getElementsByTagName("linkid")[0].childNodes[0].nodeValue);

schid=(x[i].getElementsByTagName("schid")[0].childNodes[0].nodeValue);
schop=(x[i].getElementsByTagName("schop")[0].childNodes[0].nodeValue);
//txt="Title: " + title + "<br />Book By: " + bookby + "<br />Linkid: "+ linkid;

if(title=="NULL"){
txt = "<div style=\"margin: 5px 3px 5px 3px; background: #ffdddd; border: 1px solid #ff0000;\"><p style=\"margin: 0; font-weight: bold; color: red; font-size: 16px; text-align: center; padding-bottom: 2px; background: #ff0000; color: #ffffff; padding: 4px; border: 1px solid #ffffff;\"><img src=\"http://www.languagesabroad.co.uk/images/special-offer-it.jpg\" width=\"131\" height=\"17\"></p><p style=\"margin: 3px 0 3px 0; font-weight: bold; text-align: center; font-size: 16px; padding: 3px;\"><b class=\"red\" >Guarda le nostre ultime Offerte Speciali!</b></p><p style=\"margin: 3px 0 3px 0; font-weight: bold; color: #ff0000; text-align: center; font-size: 14px; padding: 3px;\">Prenota entro il " + bookby2 + "</p><p style=\"margin: 0 0 5px 0; text-align: center;\"><a href=\"http://www.languagesabroad.co.uk/it/offerte-speciali.html\">Clicca qui per avere altre informazioni su questa offerta</a></p></div>";
}else{
txt="<div style=\"margin: 5px 3px 5px 3px; background: #ffdddd; border: 1px solid #ff0000;\"><p style=\"margin: 0; font-weight: bold; color: red; font-size: 16px; text-align: center; padding-bottom: 2px; background: #ff0000; color: #ffffff; padding: 4px; border: 1px solid #ffffff;\"><img src=\"http://www.languagesabroad.co.uk/images/special-offer-it.jpg\" width=\"131\" height=\"17\"></p><p style=\"margin: 3px 0 3px 0; font-weight: bold; text-align: center; font-size: 16px; padding: 3px;\"><b class=\"red\" >" + title + "</b></p><p style=\"margin: 3px 0 3px 0; font-weight: bold; color: #ff0000; text-align: center; font-size: 14px; padding: 3px;\">Prenota entro il " + bookby2 + "</p><p style=\"margin: 0 0 5px 0; text-align: center;\"><a href=\"http://www.languagesabroad.co.uk/it/offerte-speciali.html#" + linkid + "\">Clicca qui per avere altre informazioni su questa offerta</a></p></div>";
}

//var offtxt = "";
//var offtxt = "<div style=\"margin: 5px 3px 5px 3px; \"><a href=\"/prices/index.html?dict=it&schid="+schid+"&schoid="+schop+"&currency=2\" style=\"text-decoration:none\"><img src=\"http://www.languagesabroad.co.uk/prices/offer-it.jpg\" width=\"163px\" border=\"0\"></a></div>";

//newsletter sign up
var twenty12 = "<div style=\"margin: 5px 3px 5px 3px; \"><a href=\"/it/newsletter.html\" style=\" text-decoration:none\"><img src=\"http://www.languagesabroad.co.uk/lcaimages/newsletter-it.gif\" width=\"163px\" border=\"0\" alt=\"Clicca qui per iscriverti e ricevere la nostra newsletter!\"></a></div>";


if (!schid) {
var txt2 = txt+twenty12;
}else{
//var txt2 = txt+offtxt+twenty12;
var txt2 = txt+twenty12;
}

document.getElementById("showOffer").innerHTML=txt2;

var tree = 1; 
break;
}

}

if(tree!=1){
txt = "<div style=\"margin: 5px 3px 5px 3px; background: #ffdddd; border: 1px solid #ff0000;\"><p style=\"margin: 0; font-weight: bold; color: red; font-size: 16px; text-align: center; padding-bottom: 2px; background: #ff0000; color: #ffffff; padding: 4px; border: 1px solid #ffffff;\"><img src=\"http://www.languagesabroad.co.uk/images/special-offer-it.jpg\" width=\"131\" height=\"17\"></p><p style=\"margin: 3px 0 3px 0; font-weight: bold; text-align: center; font-size: 16px; padding: 3px;\"><b class=\"red\" >Guarda le nostre ultime Offerte Speciali!</b></p><p style=\"margin: 3px 0 3px 0; font-weight: bold; color: #ff0000; text-align: center; font-size: 14px; padding: 3px;\">Prenota entro il " + bookby2 + "</p><p style=\"margin: 0 0 5px 0; text-align: center;\"><a href=\"http://www.languagesabroad.co.uk/it/offerte-speciali.html\">Clicca qui per avere altre informazioni su questa offerta</a></p></div>";
var twenty12 = "<div style=\"margin: 5px 3px 5px 3px; \"><a href=\"/it/newsletter.html\" style=\" text-decoration:none\"><img src=\"http://www.languagesabroad.co.uk/lcaimages/newsletter-it.gif\" width=\"163px\" border=\"0\" alt=\"Clicca qui per iscriverti e ricevere la nostra newsletter!\"></a></div>";
var txt3 = txt+twenty12;
document.getElementById("showOffer").innerHTML=txt3;
}

}

