
function getDossierURL(locate) {  
    var URLArray = locate.split("/");
    
    var URLString2 = "";
    for (i = 0; i < URLArray.length; i++) {
          if (i == URLArray.length - 1) {
             URLString2 = URLString2 + "dossier.rails";
          }

          else {
             URLString2 = URLString2 + URLArray[i] + "/";
          }
    }
    

    return URLString2; 
}

function getBookingURL(locate) {  
    var URLArray = locate.split("/");
    
    var URLString2 = "";
    for (i = 0; i < URLArray.length; i++) {
          if (i == URLArray.length - 1) {
             URLString2 = URLString2 + "book.rails";
          }

          else {
             URLString2 = URLString2 + URLArray[i] + "/";
          }
    }

    return URLString2; 
}

function theButtons() {
	return "<div style=\"width: 265px; margin-left:28px; margin-top: 4px; padding-top:1px; padding-bottom:4px; padding-left:16px; background-color:#FFFFFF; border-width:1px; border-style:dotted; border-color:#777777; vertical-align: bottom\">"+ 
	
	"<img style=\"margin-left:4px; margin-top:12px; margin-bottom:4px;\" src=\"http://www.skedaddle.co.uk/buttonscap.jpg\">"+
	"<a href="+getDossierURL(window.location.href)+">" +
	"<img id=\"tripNotesButton\" src=\"/Content/Userfiles/Image/Skedaddle.co.uk/request_trip_notes.jpg\" alt=\"Request trip notes\" onMouseOut=\"document.getElementById(\'tripNotesButton\').src = \'/Content/Userfiles/Image/Skedaddle.co.uk/request_trip_notes.jpg\'\"  onMouseOver=\"document.getElementById(\'tripNotesButton\').src = \'/Content/Userfiles/Image/Skedaddle.co.uk/request_trip_notesbl.jpg\'  \" />" +
	"</a>" +  
	"<a href="+getBookingURL(window.location.href)+">" +
	"<img id=\"bookButton\" style=\"padding-left:10px;\" src=\"/Content/Userfiles/Image/Skedaddle.co.uk/book_this.jpg\" alt=\"Book Now\" onMouseOut=\"document.getElementById(\'bookButton\').src = \'/Content/Userfiles/Image/Skedaddle.co.uk/book_this.jpg\'\"  onMouseOver=\"document.getElementById(\'bookButton\').src = \'/Content/Userfiles/Image/Skedaddle.co.uk/book_thisbl.jpg\'  \" />" +
	"</a>"+
	"</div>";
}

function displayButtons() {
	var URLArray = window.location.href.split("/");
	if (URLArray[URLArray.length - 1] == "view.rails") {  
		var theContent = document.getElementById("holidayContent");
		theContent.innerHTML = theContent.innerHTML + theButtons(); 
	}
}