﻿// JScript File
function showtext(value) {
    var elem=document.getElementById("tip");
    if(value==1){ 
        elem.innerHTML="Unlike some of our competitors we include VAT in all of our prices";
        DialogTip.set_alignmentElement("tip1"); 
    }    
    else if(value==2) {
        elem.innerHTML="You can specify a 2 hour slot for the delivery to be made options include 9am-11am, 11am-1pm, 1pm-3pm and 3pm-5pm (Surcharges Apply)";
        DialogTip.set_alignmentElement("tip2"); 
    }
    else if(value==3) {
        elem.innerHTML="All collections are made the next working day from the booking date. We collect/deliver BETWEEN 9AM - 5PM Monday to Friday (excluding Bank Holidays)";
        DialogTip.set_alignmentElement("tip3"); 
    }
    else if(value==4) {
        elem.innerHTML="A tail lift is a mechanical device permanently fitted to the back of lorry, which is designed to facilitate the materials handling of goods from ground level or a loading dock to the level of the load bed of the vehicle, or vice versa. If no fork lift is on-site for delivery please select this option (free of charge).";
        DialogTip.set_alignmentElement("tip4"); 
    }
    else if(value==5) {
        elem.innerHTML="We are proud to be partnered with CJ Express Ltd who have over 25 years of experience within the transport sector.";
        DialogTip.set_alignmentElement("tip5"); 
    }
    else if(value==6) {
        elem.innerHTML="RocketBlue is an online delivery service for goods which are palletised i.e. on a pallet.  All goods must fit into the dimensions of a standard UK pallet 1.2 meters by 1 meter, if you do not have a pallet RocketBlue can provide a pallet at the collection point for an additional surcharge.   If you require your goods to be palletised please note that no box or single item can weigh more than 25kg unless previously arranged.  If you require further assistance please call our customer service team 0844 3572901.";
        DialogTip.set_alignmentElement("tip6"); 
    }
    DialogTip.show();            
}
