﻿function fncExpand(strObj)
{
	var objTeaser = document.getElementById(strObj + '_Teaser');
	var objFull = document.getElementById(strObj + '_Full');
	
	objTeaser.style.display = 'none';
	objTeaser.style.visibility = 'hidden';
	objTeaser.style.position = 'absolute';
	
	objFull.style.display = 'inline';
	objFull.style.visibilty = 'visible';
	objFull.style.postion = 'relative';
}