//
function SpellPopUp(object) {
//
//  This will cause the spell check page to appear in a popop window.  The value to
//    check is defined by object.
//
	var strLine;
	strLine = object.value.replace(/\r\n/gi,"<BR>");
//alert(strLine);
	msgWindow=window.open('CreateSpellCheck.asp?form_text=' + strLine + '&form_DataField=' + object.name + '&form_FormField=' + object.form.name,'','top=100,left=100,height=450,width=500,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes');
//	msgWindow=window.open('CreateSpellCheck.asp?form_text=' + object.value + '&form_DataField=' + object.name + '&form_FormField=' + object.form.name,'','top=100,left=100,height=500,width=400,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes');

}
