function openWindow(oLink) {
	
	sLink = oLink.href;
	window.open(sLink, 'newWindow',  'width=600, height=450, location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=yes'); return false;
}

function changeImage(sFile, sDescription) {

	var aDescriptions = new Array();
	aDescriptions['basecoat.jpg']="This is the description for base coat.";
	aDescriptions['before.jpg']="This is the description for before.";
	aDescriptions['bodywork.jpg']="This is the description for bodywork.";
	aDescriptions['buffing.jpg']="This is the description for buffing.";
	aDescriptions['cleaning.jpg']="This is the description for cleaning.";
	aDescriptions['Groundtosteel.jpg']="This is the description for Groundtosteel.";
	aDescriptions['polishing.jpg']="This is the description for polishing.";
	aDescriptions['primer.jpg']="This is the description for primer.";
	aDescriptions['repairing.jpg']="This is the description for repairing.";
	aDescriptions['sealer.jpg']="This is the description for sealer.";
	aDescriptions['tapedandready.jpg']="This is the description for tapedandready.";
	aDescriptions['finished.jpg']="This is the description for finished.";

	var sPath = "gallery/large/" + sFile;
	document.large.src = sPath;

	if (!aDescriptions[sFile]){
		aDescriptions[sFile] = "";
	}
	
	//var divDescription = document.getElementById("description");
	document.getElementById("desc").innerHTML = sDescription;

}
