function ImageSet(imgID, newTarget)
{
	// Change displaying image to a new image when called
	var img = document.getElementById (imgID);
	if (img != null)
		img.src=newTarget;
}


function GoTo (quickMenu) 
{
	// alert (box);
	var dropDown = document.getElementById (quickMenu);
	var destination =dropDown.options[dropDown .selectedIndex].value;

	if (destination) 
		location.href = destination;

	/*
	// Forward the page based on 
	var destination = box.options[box.selectedIndex].value;

	if (destination) 
		location.href = destination;

	*/
}
