function switchMe(xthis) {
	var x = xthis.rows[0].cells
	x[0].className='GenericBT_left_hover';
	x[1].className='GenericBT_body_hover';
	x[2].className='GenericBT_right_hover';
}
function switchBack(xthis) {
	var x = xthis.rows[0].cells
	x[0].className='GenericBT_left';
	x[1].className='GenericBT_body';
	x[2].className='GenericBT_right';
}

function setFlashWidth(divid, newW){
	document.getElementById(divid).style.width = newW + 'px';
}
function setFlashHeight(divid, newH){
	document.getElementById(divid).style.height = newH + 'px';
}

function setFlashPosition(divid, topP, leftP){
	document.getElementById(divid).style.position = "absolute";
	document.getElementById(divid).style.top = topP + 'px';	
	document.getElementById(divid).style.left = leftP + 'px';			
}

function setFlashSize(divid, newH, newW, topP ,leftP){
	setFlashWidth(divid, newW);
	setFlashHeight(divid, newH);
	//setFlashPosition(divid, topP, leftP);
	setFlashPosition(divid, document.getElementById(divid).style.top , document.getElementById(divid).style.left);
}

function setBack(divd){
	document.getElementById(divid).style.position = "static";
}