// JavaScript Document
// function called from within the flash file which returns the last part of the document.referrer and window.location
// alert(fromTo()) inpage to see what is passed.
// Hamish Couper 
// DNA
// 2008-06-27
function fromTo(){
	var from = String(document.referrer).split('/');
	var to = String(window.location).split('/');
	var returnArray = new Array(from[3],to[3]);
	return(returnArray);
}
