// *** WalySoft ***

var aButtons = new Array();
var lCompatible = false;

if( parseInt( navigator.appVersion ) >= 3 ) { 
	lCompatible = true; 
}

function AddImage( cFileName, cComponent, nWidth, nHeight ) {
	if( lCompatible ) {
		eval( 'aButtons[cComponent] = new Image;('+nWidth+','+nHeight+')' );
		aButtons[cComponent].src = cFileName;
 	}
}

function SetImg( cImage, cComponent ) {
	if( lCompatible ) {
		document.images[cImage].src = aButtons[cComponent].src
	}
}

