function NewWindow(URL,width,height)
	{
		var winwidth = screen.availwidth-10
		var winheight = screen.availHeight-25
		if (width < winwidth && height < winheight)
			{
				winwidth = width;
				winheight = height;
			}
		window.open(URL, "NewWin", "width="+winwidth+","+"height="+winheight+"resizable=yes,scrollbars=yes,menubar=yes,left = 0,top = 0");
	}

function ValidateAdd()
	{
	/*Index = document.CampionForm.CampionsSchoolCode.selectedIndex;
		if (trim(document.CampionForm.CampionsSchoolName.value) == "")
			alert ("Please enter School Name");
		else if (Index == 0)
			alert ("Please select a School code");
		else*/
			CampionForm.submit();
	}

function ValidateEdit()
	{
		/*if (trim(document.CampionForm.CampionsSchoolName.value) == "")
			alert ("Please enter School Name");
		else*/
			CampionForm.submit();
	}

function ValidateFoxpro()
	{
		//alert (document.CampionForm.FoxDbFile.value);
		/*if (trim(document.CampionForm.FoxDbFile.value) == "")
			alert ("Please choose a file to upload.");
		else*/
			CampionForm.submit();
	}
function GBT_change_bg_color(obj, colour)
	{
		obj.bgColor=colour;
	}

