function doMail()
{
  window.location.href="mailto:info@abbottinsurance.co.uk";
}

function doPreload(which)
{
  var the_Images;
  var ok=0;
   
  if (which == 'close')  
  {  
    ok=1;  
    the_Images = new Array(
                           'images/closeover.gif'
		          );			
  }
  
  if (which == 'missing')  
  {  
    ok=1;  
    the_Images = new Array(
                           'images/backover.gif'
		          );	  
  }
  
  if (which == 'contact')  
  {  
    ok=1;  
    the_Images = new Array(
                           'images/closeover.gif',
                           'images/submitover.gif',
                           'images/resetover.gif'
		          );			
  }  

  if (ok==1)
  {
    preloadImages(the_Images);
  }
}
    
function preloadImages(the_Images_array)
{
  for(var loop = 0; loop < the_Images_array.length; loop++)
  {
    var an_image = new Image();
    an_image.src = the_Images_array[loop];
  }
}