// VERSION_XX

function DoTranslate(spanID, candidateID, positionID, sessionID)
{
	launchWindowWys("Translate.aspx?SessionID=" + sessionID + "&SpanID=" + spanID + "&CandidateID=" + candidateID + "&PositionID=" + positionID, 550, 550);
}
    
function SetTranslatedText(updatedVisibleText, updatedVarText, origText, spanVisibleID, spanVarID)
{
   		document.all[spanVisibleID].outerHTML = document.all[spanVisibleID].outerHTML.replace('style="color: green; TEXT-DECORATION: underline"','') //remove highlights

		document.all[spanVisibleID].innerHTML = updatedVisibleText;
		document.all[spanVarID].innerHTML = updatedVarText;
}

function launchWindowWys(url,width,height)
{
	if(width == 0){
		width = screen.availWidth
	}
	if(height == 0){
		height = screen.availheight
	}
	theLaunchedWindow = window.open(url.replace(/#/g,"%23"),"ProjectDoxWysWindow","scrollbars,resizable,status=1,width=" + width + ",height=" + height)
}