function load() {
 var x=document.getElementById('main').offsetHeight;
 var page=document.location.href;
 if (page=="http://www.harvestonline.co.uk/index.php" || page=="http://www.harvestonline.co.uk/")
 {
 x=x-25
 }
 else
 {
 x = x-36;
 }
 document.getElementById('quick').style.height = x + "px";
 document.getElementById('menu').style.height = (x-5) + "px";
 return false;
 }

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=850,height=700');");
}