// tabView functions
var initialised = false;

function TabOrientation()
{
	if (oMPC.style.tdTabOrientation == "top") oMPC.style.tdTabOrientation = "bottom" ;
	else oMPC.style.tdTabOrientation = "top";
}
function Height()
{
	alert(parseInt(heightBox.value));
	oMPC.style.height = parseInt(heightBox.value);
}
function Width()
{
	oMPC.style.width = parseInt(widthBox.value);
}
function BackColor()
{
	oMPC.style.backgroundColor = BackColorBox.value;
}
function Color()
{
	oMPC.style.color = ColorBox.value;
}

function initHTC()
{
	initialised = true;
	if (document.all.oMPC) oMPC.style.visibility='visible';
}

// END tabView functions

