	function dbSave()
	{
		document.DBSETUP.submit();			
	}
	
	function dbControl()
	{
		TABLESET	=	document.DBSETUP.TABLESET.value;
		DBNAME		=	document.DBSETUP.DBNAME.value;
		DBUSER		=	document.DBSETUP.DBUSER.value;
		DBPASS		=	document.DBSETUP.DBPASS.value;
		DBHOST		=	document.DBSETUP.DBHOST.value;
		
		if(TABLESET.length > 3 && DBNAME.length > 3 && DBUSER.length > 3 && DBPASS.length > 3 && DBHOST.length > 3)
			document.DBSETUP.DBSAVE.disabled = false;
		else
			document.DBSETUP.DBSAVE.disabled = true;
	}
