function imgSwap( imageName1, swapSrc1 ) 
{
	
	document[imageName1].src = swapSrc1;

}



function divImgSwap( imageName1, swapSrc1, divName ) 
{
  
	if( divName )
    
		eval( divName + '.document.' + imageName1 + '.src = ' + 'swapSrc1' );
 
		
	else
    
		document[imageName1].src = swapSrc1;

}


function newImg( argPath ) 
{	
	if( document.images ) 
	{
		
		rslt = new Image();
		
		rslt.src = argPath;
		
		return rslt;
	
	}

}