function init() {
	var t = document.getElementById("textbox");
	var c = t.innerHTML;
	var p0 = c.indexOf(".") + 1;
	var p1 = c.substring(p0+1).indexOf(".")+p0 +2;
	var firstSentence = c.substring(0,p0);
	var secondSentence = c.substring(p0+1,p1);
	var theRest = c.substring(p1);
	t.innerHTML = "<span style='font-size:16px;font-weight:bold;color:#075795; line-height:18px;'>"
	+firstSentence+"</span> <span style='font-size:11px;font-weight:bold;color:#075795;'>"
	+secondSentence+"</span>"+theRest;
}


/*function popUpWinemaker() {
	window.open(baseUrl+"jsp/popUpWinemaker.jsp?t="+winemakersOverview, 'Winemaker','width=510,height=510');
}*/

function popUpThoughts() {
	window.open("jsp2/popUpThoughts.jsp?v="+vineyard+"&t="+dansThoughts, 'Thoughts','width=510,height=510');
	//window.open(baseUrl+"jsp/popUpThoughts.jsp?t="+dansThoughts, 'Thoughts','width=425,height=500');
}



function rollOverMe(DIV, BGCOLOR, COLOR){
	DIV.parentNode.style.zIndex=1000;
	DIV.style.backgroundColor = BGCOLOR;
	DIV.style.color = COLOR;
	DIV.style.height = "auto";
}

function rollOutMe(DIV, BGCOLOR, COLOR){
	DIV.parentNode.style.zIndex=1;
	DIV.style.backgroundColor = BGCOLOR;
	DIV.style.color = COLOR;
	DIV.style.height = "15px";
}

