
// This does a delayed redirect to a landing page for downloads.
// from: http://microisvjournal.wordpress.com/2008/03/12/brilliant-bit-of-javascript-for-redirecting-downloaders/
//  Set the href to the target download and add a call to this function from the onclick event.
function SetUpRedirect()
{
	var destination = 'http://www.southwedgesw.com/photonote/download-free-trial.php';
	setTimeout("window.location='" + destination + "'",2000);
	return true;
}