
function AdminSubmit(thiscmd) 
	{ // 
	if (document.forms[0].elements[2].name == '__VIEWSTATE')
		{
		document.forms[0].elements[4].value=thiscmd;
		}
	else
		{
		document.forms[0].elements[2].value=thiscmd;
		}
	
	document.forms[0].submit()	

	}


function ShowPopUp(TFile, TScroll, THeight, TDepth, TopPOS, LeftPOS) {


newWindow = window.open('' + TFile + '', 'PopUp', 'width='+ TDepth +',height='+THeight+',top='+TopPOS+',left='+LeftPOS+',directories=no,location=no,menubar=no,scrollbars=' + TScroll + ',status=no,toolbar=no,resizable=yes');

if (newWindow.blur) newWindow.focus();

}
