function winNews(strURL,DynamicContentId,iWidth,iHeight)

{
	window.open(strURL+'?DynamicContentId=' + DynamicContentId ,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=No, status=yes,Width=' + iWidth + ',Height=' + iHeight)
}

function ShowPic(strPIC)
{
	window.open(strPIC,'_blank','location=no,toolbar=no,menubar=no,scrollbars=Auto,resizable=yes,WIDTH=400,HEIGHT=400')
}


function SwitchMenu(obj)
	{
	try{
		
		if (document.all('sub_' + obj).style.display == 'none')
			{
			//alert('true');
			document.all('sub_' + obj).style.display = '';
			//document.all('img_' + obj).src = 'imgs/icon_answer.gif';
			//document.all('img_' + obj).alt = '1';

			}
		else
			{
			//alert('false');
			document.all('sub_' + obj).style.display = 'none';
			//document.all('img_' + obj).src = 'imgs/icon_question.gif';
			//document.all('img_' + obj).alt = '1';
			}
		}
	catch(e){}
	}
