/******************************************************************************
*                                                                             
* Page name: 	Redirect.js
* Description:  Contains function to be used when redirecting user to a new url
* Functions: 
*			Name:						Description:
*			Redirect(NewURL)			This function adds ?time=currentTime to a url
*
* Author: Mitzi Shanedling
* Date: 05.18.2000
* 
* Updates
* Author:
* Date:
* Reason:
**********************************************************************************/
function Redirect(NewURL){
	var datestring
	NewURL = NewURL + "Date=" + escape(Date(datestring));
	window.location.href = NewURL;
}

