/**
 *	Made by Mihai Bojin 2007
 *	Shows or hides a background image for a input field
 */

function hideElement( id, image ) {
	var el = eval("document.getElementById('"+id+"').style");
	if ( !el ) {
		return false;
	}
	el.background = 'url(include/images/'+image+'_.png) no-repeat 0 0';
	//el.backgroundRepeat = '';
	el.backgroundPosition = '0% 0%';
//	el.background = 'url(include/images/'+image+'_.png) no-repeat 0 0; position: 0% 0%;';
}

function showElement( id, image ) {
	var el = eval("document.getElementById('"+id+"').style");
	if ( !el ) {
		return false;
	}

	var el2 = eval("document.getElementById('"+id+"').value");
	if ( el2.length > 0 ) return false;
	
	//el.backgroundRepeat = 'no-repeat 0 0';
	el.background = 'url(include/images/'+image+'.png) no-repeat 0 0';
	el.backgroundPosition = '0% 0%';
//	el.background = 'url(include/images/'+image+'.png) no-repeat 0 0; position: 0% 0%;';
}