
function winNews(strURL,DynamicContentID,iWidth,iHeight)
{
	window.open(strURL + '?DynamicContentID=' + DynamicContentID ,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=No,Width=' + iWidth + ',Height=' + iHeight)
}

function winOpen(strURL,iWidth,iHeight)
{
	window.open(strURL,'_blank','location=no,toolbar=no,menubar=no,scrollbars=no,resizable=No,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/ico_answer.jpg';
			//document.all('img_' + obj).alt = '1';

			}
		else
			{
			//alert('false');
			document.all('sub_' + obj).style.display = 'none';
			document.all('img_' + obj).src = 'imgs/ico_question.jpg';
			//document.all('img_' + obj).alt = '1';
			}
		}
	catch(e){}
	}

