var CUpcomingItems;

function openPics(pic)
{
	window.open(pic.getAttribute("src"),"Overview",'toolbar=no,menubar=no,status=no,scrollbars=no,resizable=yes');
}

function moreSwitch(id)
{
	if(document.getElementById (id).getAttribute("style").display == 'none')
	{
		document.getElementById (id).getAttribute("style").display = 'block';
	}
	else
		if(document.getElementById (id).getAttribute("style").display == 'block')
		{
			document.getElementById (id).getAttribute("style").display = 'none';
		}
}

