<!--

function DivideString(strSrc, oForm){
	var strTag = strSrc;
	var tags;

	while(strTag.length > 0) {
		tags = document.createElement("textarea");
		tags.name = "Contents";
		tags.value = strTag.substr(0, 102400);
		tags.style.display = "none";
		oForm.appendChild(tags);
		strTag = strTag.substr(102400);
	}

	tags = document.createElement("textarea");
	tags.name = "Contents";
	tags.value = strTag;
	tags.style.display = "none";
	oForm.appendChild(tags);
}



function DoSubmit(oForm) {
	//oForm.action = actionUrl;
	oForm.submit();
}

-->
