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