function showEmail(div,pre){
var d='gilbert-baitson.co.uk';
var a=document.getElementById(div)
a.href="mailto:"+pre+"@"+d
a.innerHTML=pre+"@"+d
}

function copyValue(s,d){
var a = document.getElementById(s).value
var b = document.getElementById(d)

a = a.replace(/\r/g,"<br>")

b.innerHTML = a
}
function copyDate(dt,hh,mm,d){
var jdt = document.getElementById(dt).value;
var jhh = document.getElementById(hh).value;
var jmm = document.getElementById(mm).value;
var b = document.getElementById(d);

b.innerHTML = jdt +" - " +jhh+":"+jmm;
}

function clearDiv(timeout,div){

if(timeout>0){
timeout = timeout - 1;
setTimeout("clearDiv("+timeout+",'"+div+"');",1000);

}else{
document.getElementById(div).innerHTML = "";
}
}

function noBrochureAlert(){
var msg = "A catalogue is not currently available for this sale, if you would like to be notified when one is made available please consider joining our mailing list.";
alert(msg);
}
