function confirmSubmit(controlID,phrase)
	{
	var msg = phrase;

	if (confirm(msg))
		{
		__doPostBack(controlID,'');
		} else {
		// do nothing
		}
	}

function GoTo(myURL)
	{
	document.location.href= myURL;
	}

function highlight(value) {
    value.style.backgroundColor="lightblue";
}

function unhighlight(value) {
    value.style.backgroundColor="white";
}
