//document.writeln("<!--[if IE & ! IE 7]><style type='text/css'>#watchDemos{width: 1px;height: 1px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/windows/media/home/watch-demos.png',sizingMethod='image');} #smallArrow{width: 1px;height: 1px;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/windows/media/home/arrow_small.png',sizingMethod='image');} </style><![endif]-->");


function showWideExpando(areaSelection, areaOther1, areaOther2)
{
	hideMe(areaSelection + "EBox");
	hideMe(areaOther1 + "EBox");
	hideMe(areaOther2 + "EBox");
	hideMe(areaOther1 + "EBoxBig");
	hideMe(areaOther2 + "EBoxBig");
	hideMe(areaSelection + "EBoxSmall");
	showMe(areaSelection + "EBoxBig");
	showMe(areaOther1 + "EBoxSmall");
	showMe(areaOther2 + "EBoxSmall");
}

function hideWideExpando(areaSelection, areaOther1, areaOther2)
{
	hideMe(areaSelection + "EBoxBig");
	hideMe(areaOther1 + "EBoxSmall");
	hideMe(areaOther2 + "EBoxSmall");	
	showMe(areaSelection + "EBox");
	showMe(areaOther1 + "EBox");
	showMe(areaOther2 + "EBox");
}

function showMe (divId)
{
	if (document.getElementById(divId) != null)
		document.getElementById(divId).style.display = "block";
}

function hideMe (divId)
{
	if (document.getElementById(divId) != null)
		document.getElementById(divId).style.display = "none";		
}