if ((window.location.href).indexOf('cmswpt') != -1) {
    // on the datasheet
    var promoLink = '<table border="0" cellpadding="0" cellspacing="0"><tr><td><h4 style="margin:0px;padding:0px;">Need assistance?<br/>Speak to an expert</h4></td><td valign="top"><img src="http://www.tek.com/Measurement/programs/call_now/phone.gif" width="50" height="36" alt="" /></td></tr></table><p>+44 (0) 1344 392080<br />Office hours: 8:30am to 5:00pm<br />Email: <a href="mailto:measurement.uk@tektronix.com">measurement.uk@tektronix.com</a><img src="http://www.tek.com/cgi-bin/wt.cgi?wt=1114&link=GBphone" width="1" height="1" alt="" /></p>';
}
else {
    var promoLink = '<table border="0"><tr><td valign="top"><img src="http://www.tek.com/Measurement/programs/call_now/phone.gif" width="50" height="36" alt="" /></td><td><h4 style="margin:0px;padding:0px;">Need assistance? Speak to an expert</h4><p>+44 (0) 1344 392080<br />Office hours: 8:30am to 5:00pm<br />Email: <a href="mailto:measurement.uk@tektronix.com">measurement.uk@tektronix.com</a><img src="http://www.tek.com/cgi-bin/wt.cgi?wt=1114&link=GBphone" width="1" height="1" alt="" /></p></td></tr></table>';
}

//get pricing cookie country (if exists)
var nameEQ = "TEK_PREFS=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0){
        var country = (unescape(c.substr(c.indexOf("COUNTRY"),12))).substr(8,2);
        if(country == 'GB') {
            document.getElementById('contact_promo').innerHTML = promoLink;
        }
    }
}
