function movetobottom() {	
						
						var textToMove = jQuery('p.sendToBottom').html(); 
	
						//alert (textToMove);
						
						jQuery('.sendToBottom').css('display', 'none'); 
						
						if (textToMove != null ) {
						
						document.write("<span class='disclaimerText'>" + textToMove + "</span>");
				
						}
}
	

