//Gite La Croix functions
//(c)2002/3 mark deal/rubberbandmedia.com


function rubberband_preload(theObj,theSrc)
{
	eval(theObj+" = new Image()");eval(theObj+".src = \""+theSrc+"\"");
}

function rubberband_placeImage(thePlace,theObj,nc4Lyr)
{
	if(!document.layers || nc4Lyr==null || nc4Lyr==false)
	{
		eval("document.images."+thePlace).src=eval(theObj+".src");
	}
	else
	{
		eval('document.'+nc4Lyr+'.document.images["'+thePlace+'"]').src = eval(theObj+'.src');
	}
}
