﻿function searchHTMLFile(url){var urlCash = url + "?"+(new Date()).getTime();new Ajax.Request(urlCash, { method: 'get', onComplete: displayData });}function displayData(httpObj) {$("dispArea").innerHTML = colorCheck(httpObj.responseText);}function colorCheck(htmlText) {	var resultText = htmlText ;	return resultText ;}