function hniGuardo(sPiece1, sPiece2, sContent, vbX1) {

	sPiece1 = sPiece1.replace(vbX1, "") ;
	sPiece2 = sPiece2.replace(vbX1, "") ;
	sContent = sContent.replace(vbX1, "") ;

	document.write("<a class=\"copy\" href=" + 
		"mail" + "to:" + sPiece1 + "@" + sPiece2 + ">") ;

	if (sContent == ''){
		document.write(sPiece1 + "@" + sPiece2) ;
		}
		else
		{	
		document.write(sContent + "</a>") ;
		}
}

function hniPicBlast(sPiece1, sPiece2, sContent, vbX1, sImage, iWidth, iHeight) {

	sPiece1 = sPiece1.replace(vbX1, "") ;
	sPiece2 = sPiece2.replace(vbX1, "") ;
	sContent = sContent.replace(vbX1, "") ;

	document.write("<a class=\"copy\" href=" + 
		"mail" + "to:" + sPiece1 + "@" + sPiece2 + ">") ;

	document.write("<IMG src=\"" + sImage + "\" " +
		"border=\"0\" " +
		"width=\"" + iWidth + "\" " +
		"height=\"" + iHeight + "\">") ;

	document.write("</a>") ;
}