
/*
 *	display text box
 */

function c_textbox (parent, xcoord, ycoord, width, height, bgcolor, textblurb)
{
	var textdiv = document.createElement("div");
	textdiv.style.border = "solid 1px #000000";
	textdiv.style.position = "absolute";
	textdiv.style.top = ycoord+"px";
	textdiv.style.left = xcoord+"px";
	textdiv.style.width = width+"px";
	textdiv.style.height = height+"px";
	textdiv.style.zindex = "10";
	textdiv.innerHTML = textblurb;
	
	/* var textshadowdiv = document.createElement("div");
	textshadowdiv.style.position = "absolute";
	textshadowdiv.style.top = ycoord+3+"px";
	textshadowdiv.style.left = xcoord+3+"px";
	textshadowdiv.style.width = width+"px";
	textshadowdiv.style.height = height+"px";
	textshadowdiv.style.color = "#888888";
	textshadowdiv.style.zindex = "9";
	textshadowdiv.innerHTML = textblurb;
	
	document.getElementsByName(parent)[0].appendChild(textshadowdiv); */
	
	document.getElementsByName(parent)[0].appendChild(textdiv);
}
 
 
