//===========================================================// GoToPastQuestion//===========================================================function GoToPastQuestion( historyIndex ) {	try {		var form = document.forms["SitePressForm"];		form.turned.value = -1;		form.goToQuestion.value = historyIndex;		form.submit();		}	catch (error) {		alert( "GoToPastQuestion: " + error.description  );		}	}//===========================================================// GoToView//===========================================================function GoToView( view ) {	try {		document.location.href = "/self_help.asp?view=" + view;		//var form = document.forms["SitePressForm"];		//form.turned.value = "";		//form.view.value = view;		///form.submit();		}	catch (error) {		alert( "GoToView: " + error.description  );		}	}//===========================================================// Initialize//===========================================================function Initialize( ) {	try {		$(".popup").click( 			function() {								$(".popupImage",this).toggle("fast");				} );		}	catch (error) {		alert( "Initialize: " + error.description  );		}	}$(Initialize)