// JavaScript Document

function swap(img,isrc) {
   if (!document.images) return;

   if( document.images[img] != null ) 
	  document.images[img].src = isrc;
}

function textappear(frase, destiny){
	var code = frase;
	string = 'theDestiny = document.getElementById("'+destiny+'");';
	eval(string);
	if(theDestiny != null){
		theDestiny.innerHTML = code;
	}
}