// JavaScript Document

		//Get Version of IE or Netscape
		
		NS4 = (document.layers) ? 1 : 0;
		IE4 = (document.all) ? 1 : 0;
		ver4 = (NS4 || IE4) ? 1 : 0;
		
		//function ChangeImage (id) {
		//	var new_image = "images/medium/" + id + ".gif";
		//	document['bigImage'].src = new_image;
			
		//	whichEl = eval("window.document.all");
		//}

		// For Name under Image
			
		function ChangeImage (id) {
			var new_image = "images/medium/" + id + ".gif";
			document['bigImage'].src = new_image;
			
			str = id;
			
			if (NS4) {
				whichEl = eval("window.document.bridecode.document");
				with (whichEl) {
					open();
					write(str);
					close();
				}
			}
			else {
				whichEl = eval("window.document.all.bridecode");
				whichEl.innerHTML = str;
			}
		}
