/////////////////////////////////////////////
//
// Copyright Textura 2005
//
// Code may not be used, copied or modified 
// without permission.
//
/////////////////////////////////////////////
//
// JAVASCRIPT - utils.js
//
// Set of utilities to handle offsite forms


// URL PARAMETER MANAGEMENT
// Extracted from JAVASCRIPT: The definitive Guide by David Flanagan

function validate_form_location()
{
	var host_type = location.hostname.substring(0,3);
	var return_code = (host_type == "www");
	if (!return_code) alert("This facility is not available on the Intranet.");
	return return_code;	
}

// END OF FILE
