﻿// Stores the position of the cursor in the text box.
function storeCareturl (textEl)
{
	if (textEl.createTextRange) 
		textEl.caretPos = document.selection.createRange().duplicate();		
}
