// JavaScript Document

<!--
function checkquick(thisform)
{

	if (thisform.query.value == null || thisform.query.value == "")
	{
		alert ("Please enter a search term");
		return false;
	}
	else
	{
		val = thisform.query.value;
		if (val.substring(4, 5) != " ")
		{
			thisform.query.value = val.substring(0, 4) + " " + val.substring(4, 99)
		}
		top.location.href = "http://ipac.canterbury.ac.nz/ipac20/ipac.jsp?profile=a&session=&index=.CC&term=" + thisform.query.value;
		return false;
	}
	
	return true;
}

//-->


