// JavaScript Document
var message ="<u><strong>Type :</strong> Items/Carton</u><br>Small &nbsp;&nbsp; : 4 items<br>Medium : 2 items<br>Big &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 1 item<br>2 Small & 1 Medium use 1 Carton.<br><b>Delivery charge : </b>8.95 &pound;/Carton";
var message1 ="<strong><u>Carriage Charges:</u></strong><br><br>First 20 kg. : &pound;8.95+V.A.T<br><br>20p will be added each extra kg.";
document.write('<div id="MsgFloat" class="alltext" style="display:none;position:absolute;background-color:#F3EEDE;border:1px solid black;padding:4px"></div>');
function ShowPopupMessage(msg,obj)
{
	x=getposOffset(obj, "left");
	y=getposOffset(obj, "top");
	
	obj = document.getElementById("MsgFloat");
	obj.style.top = y+20+"px";
	obj.style.left = x-20+"px";
	obj.innerHTML = msg;
	obj.style.display = "block";
}
function HidePopupMessage()
{
	obj = document.getElementById("MsgFloat");
	obj.style.display = "none";
}

