function winPopup(strURL,MenuID,iWidth,iHeight)

{
	window.open(strURL+'?MenuID=' + MenuID ,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=Yes, status=yes,Width=' + iWidth + ',Height=' + iHeight)
}	

function winPopupAddArt(strURL,iWidth,iHeight)

{
	window.open(strURL,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=Yes, status=yes,Width=' + iWidth + ',Height=' + iHeight)
}	


function winPopupAddArt(strURL,DynamicContentID,iWidth,iHeight)

{
	window.open(strURL+'?DynamicContentID=' + DynamicContentID ,'_blank','location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=Yes, status=yes,Width=' + iWidth + ',Height=' + iHeight)
}	


function submitFrm()
{
	if (validate())
	{
		document.forms["frm"].submit();
	}
}

function SwitchMenu(obj)
	{
	try{
		
		if (document.all('sub_' + obj).style.display == 'none')
			{
			//alert('true');
			document.all('sub_' + obj).style.display = '';
			
			}
		else
			{
			//alert('false');
			document.all('sub_' + obj).style.display = 'none';			
			}
		}
	catch(e){}
	}
