// this function will automatically be called by the printHead.cfm process
// if it is defined.
//
// sets all link targets to _top
function onLoadFunction()
{
	// inspired by http://noscope.com/journal/2004/10/link-target-preferences
	var link, l = 0;

	// Get all the links
	while (link = document.links[l++])
	{
		// Open in _top
		link.target = '_self'; 
	}
}