bname	= navigator.appName
IE	= 'Microsoft Internet Explorer'
NS	= 'Netscape'

function submitForm()
	{
	if (bname==IE)
		{
		document.forms[0].submit();
		}
	else
		{
		document.layers['scrollContentDiv'].document.forms[0].submit();
		}
	}


function openWin(file, name, winWidth, winHeight)
	{
	window.open(file, name, 'menubar=0,location=0,toolbar=0,scrollbars=0,resizable=0,status=0,width='+winWidth+',height='+winHeight+',top=100,left=100')
	}
	
	
function StringEmpty(S)
	{
	for (var i = 0; i != S.length; i++)
		{
		if ((S.charAt(i) != ' ') && (S.checked = false))
			{
			return false;
			}
		}
	return true;
	}



