/**
 * 
 * @param {string} sText
 * @param {string} sUrl
 */
function resolveSignature(sText, sUrl) {
	
	if(!document.write) return;

	// set default if no value were passed
	if(sText == null) var sText = "Conception web Cyber Génération";
	if(sUrl == null) var sUrl = "http://www.cybergeneration.com";

	document.write('<a href="'+sUrl+'" target="_blank">'+sText+'</a>');
}