// Created by Ian butler, Orficenet Systems 26th November 2008
// Copyright 2008.


function popdiv(divid) {

//alert(divid);

var fromTopOfPage = document.getElementById(divid).offsetTop;
var heightOfDiv = document.getElementById(divid).offsetHeight;


//it needs to know where the point is on the image, it may be half way but sometimes it might not be.
var imagePointPosition=81;

middleOfDiv = heightOfDiv/2;
positionOfPoint=fromTopOfPage+middleOfDiv-imagePointPosition;

//alert(fromTopOfPage);
//alert(heightOfDiv);
//alert(middleOfDiv);
//alert(positionOfPoint);

var div = document.getElementById('deliveryicon');

div.style.top=positionOfPoint+"px";


switch(divid)
{
case "delExpress":
   div.style.display="block"; 
   div.innerHTML="<div style='margin:15px;margin-right:34px;margin-top:55px'>This product is a <b>STOCK LINE</b>. Subject to your postcode it could be delivered within 5-7 workings days.</div>";
   break;    
case "del48hrs":
   div.style.backgroundImage="url(/siteimages/bkgrounddiv4.png)";
   div.style.display="block";
   div.innerHTML="<div><table><tr><th width=100 colspan=1 align=left>Order Day</th><th align=left width=1212>Delivery Day</th></tr><tr><td>Monday</td><td style='color:red'>Tuesday</td></tr><tr><td>Tuesday </td><td style='color:red'>Wednesday</td></tr><tr><td>Wednesday</td><td style='color:red'>Thursday</td></tr><tr><td>Thursday</td><td style='color:red'>Friday</td></tr><tr><td>Friday</td><td style='color:red'>Monday</td></tr><tr><td colspan=2>* Orders placed before <b>MIDDAY</b>.</td></tr></table></div>";
   break;
default:
  alert("neither");
}



}

function hidePopDiv() {

var div = document.getElementById('deliveryicon');
div.style.display="none";
}
