34 lines
1.4 KiB
JavaScript
34 lines
1.4 KiB
JavaScript
// ENGL1SH_VERS10N 1.2.1.1 DO NOT REMOVE OR CHANGE THIS LINE
|
|
// synch.js
|
|
// NLS_CHARSET=UTF-8
|
|
// (C) Copyright IBM Corporation, 2002, 2005
|
|
// All rights reserved. Licensed Materials Property of IBM
|
|
// US Government Users Restricted Rights
|
|
// Use, duplication or disclosure restricted by
|
|
// GSA ADP Schedule Contract with IBM Corp.
|
|
|
|
/* TRNOTE - BEGIN TRANSLATABLE TEXT. */
|
|
|
|
// the following text is used to dynamically display the feedback and rating messages on every page
|
|
var sFeedbackAndSurvey='<div class="runningfooter"><a href="../rzahg/icfeedback.htm?noframes=true" target="_blank ">Send feedback<\/a> | <a href="../rzahg/icsurvey.htm?noframes=true" target="_blank ">Rate this page<\/a><br/><hr/><\/div>'
|
|
|
|
/* TRNOTE - END TRANSLATABLE TEXT. */
|
|
//START NON-TRANSLATABLE
|
|
//////////////////////////////////////////////////////////////////////
|
|
// begin code execution path
|
|
//////////////////////////////////////////////////////////////////////
|
|
// insert feedback links at top of document
|
|
addFeedbackLinks();
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// begin supporting functions
|
|
//////////////////////////////////////////////////////////////////////
|
|
function addFeedbackLinks(){
|
|
if (this.bNestedFrames) return;
|
|
if (this.document){
|
|
this.document.write(sFeedbackAndSurvey.substr(0));
|
|
}
|
|
}
|
|
//END NON-TRANSLATABLE
|