/* Function - Changes an image on a 'list' selection.
   path - This is the 'path' to the images.
   image - This is the 'name' of the image to chnage.
   list - This is the 'list' control that changes the image. */
function SwapImage(path, image, list)
{
	document.getElementById(image).src = path + list.value;
}

/* Function */
function OpenViewColoursWindow(image)
{
	var window = MM_openBrWindow('ViewColours.html?vc=' + image,'ViewColours','width=500,height=600,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function LoadViewColours()
{
	var qs = window.location.search.substring(1);
	image = qs.substring(3, qs.length);
 	document.getElementById('imgViewColours').src = image;
}