function swapMainImage(imageFileName) {
	document.main_photo.src = imageFileName; return true;
}

function swapFrontpageImage(imageFileName,newHREF) {
	document.frontpage.src = imageFileName;
	
	//Now change the href of the rollover image
	if (document.links.length > 0) {
		if (document.getElementById) {
			document.getElementById("frontpageHREF").href = newHREF;
		}
		else if (document.all) {
			document.all["frontpageHREF"].href = newHREF;
		}
    }
     return true;
}

function rollshopfor(imageFileName) {
	document.rollovershopfor.src = imageFileName;
     return true;
}

function swapReplacementParts(imageFileName1,imageFileName2) {
	document.all["productphoto"].src = imageFileName1;
	document.all["productdims"].src = imageFileName2;
}
