////////////////////////////////////////////////////////////////////
//funcion. -Javascript
function rellenaMail(){
	var script='1';
	try{
		if(script=='1'){
			document.getElementById('comment').value='elGatoConBotas';
		}else if(script=='2'){
			document.getElementById('comment').value='CocodriloDundee';
		} 
	}catch(err){}
	//alert('comment::::'+document.getElementById('comment').value);
}
window.onLoad=rellenaMail;
