//
//for external.jsp
//

$(document).ready(function(){	
	if ($('input#secondsToDelay').length > 0 && $('input#externalUrl').length > 0) {
		var secondsToDelay = $.trim($('input#secondsToDelay').val());
		var externalUrl = $.trim($('input#externalUrl').val());
		var redirectTimeout = setTimeout(function(){
			window.location.href = externalUrl;
		}, secondsToDelay*1000);
		
		$('a#cancelExternalRedirect').click(function(e){
			e.preventDefault();
			clearTimeout(redirectTimeout);
			$('div#redirectMessage').html('Redirect Cancelled');
			history.go(-1);
		});
	}	
});