// JScript source code
<!--


function clearField(thefield){
	if (thefield.defaultValue==thefield.value){
		thefield.value = ""
	}else{
		//document.write(thefield.value);
	}
} 

	function PageGo(){
		
		var tValue  = parseInt(document.forms.Search.PageJumpNumber.value);
		
		if(tValue.length == 0)
			return false;
		tValue+=0;
		if(tValue < 369 && tValue > 0)
	             document.forms.Search.action = PageFileName(tValue);
		//location.href = 
		
		return true;

				
	}
	function PageFileName(f){
		var x = f;
	
		return "full.asp?page=" + x
		
	}
-->