
// Title: default.js
// Date: 16:14 5 January 2009
// Version: 
// Copyright: Copyright (c) 1994-2010 Global Web Limited 
// Telephone: +44 1224 454000
// Web: http://www.globalweb.co.uk

function select(anchor)
                	{
                		document.images[anchor].src = anchor + "-on.gif";
                		return true;
                   }
                    	function deselect(anchor)
                	{
                    document.images[anchor].src = anchor + ".gif";
                    return false;
                    	}


function ResizeTheImage()
{
	if (parseInt(navigator.appVersion)>3)
	{

		var newXSize = 0;
		var newYSize = 0;

 		if (navigator.appName=="Netscape")
		{
  			newXSize = window.innerWidth;
  			newYSize = window.innerHeight;
		}

 		if (navigator.appName.indexOf("Microsoft")!=-1)
		{
  			newXSize = document.body.offsetWidth;
  			newYSize = document.body.offsetHeight;
 		}

		newXSize = (newXSize)/3;
		newYSize = newXSize*0.56; // (newYSize)/3;

		eval("document.gary.width=newXSize");

		eval("document.gary.height=newYSize");
	
		c1 = document.getElementById('part1');
		c2 = document.getElementById('part2');

		c1.width=newYSize;
		c2.width=newYSize;
    	}
}
 
