/* 
 * // ED - funciones agregadas 2010-02-05
 * 
 */

	function clearInput(id,texto){

		document.getElementById(id).value = texto;
		document.getElementById(id).style.color = '#000000';
		document.getElementById(id).style.fontStyle = 'normal';
	}

	function sendSuscribe(fb_id_user,valueDefault){

		if( document.getElementById('suscribetefbinput').value == valueDefault )
			document.getElementById('suscribetefbinput').value = "";

		window.open("http://feedburner.google.com/fb/a/mailverify?uri="+fb_id_user, 'popupwindow', 'scrollbars=yes,width=550,height=520');
		return true;

	}