var link_rssfeed='Pinnacle Courseware web site RSS feed for company and product news.';
var link_rssnewsfeed='RSS feed for Participant News.';
var link_new='Use this pushbutton to create new QuESt file.';
var link_save='Use this pushbutton to save ANY AND ALL changes made to a QuESt file!!!';
var link_saveas='Use this pushbutton labeled "Save As" to save the QuESt file currently loaded under a new filename.';
var link_deletefile='Use this pushbutton to delete the Selected QuESt File.';
var link_rename='Use this pushbutton to edit a QuESt file.';
var link_undo='Use this pushbutton to undo the last change you made to a QuESt file.';
var link_addnode='Use this pushbutton to add a node to the tree.';
var link_deletenode='Use this pushbutton to delete a node from in the tree.';
var link_moveleft='Use this pushbutton to move a node leftward in the tree.';
var link_moveright='Use this pushbutton to move a node rightward in the tree.';
var link_moveup='Use this pushbutton to move a node upward in the tree.';
var link_movedown='Use this pushbutton to move a node downward in the tree.';
var link_desclink='Hypertext Maker';
var link_helplink='Balloon Maker';
var link_quelink='Hypertext Maker';
var link_standardanswerlink='Hypertext Maker';
var link_copy_to='Copy content from nodes.';
//var link_extractbtn='Use this pushbutton to access the Extract panel.';
var link_create='Use this panel to Create the Hierarchical tree.';
var link_answerwizard='Use this panel to write your written responses.';
var link_filter='Use this panel to search the tree in a QuESt file.';
var link_edit='Use this panel for all text editing operations.';
var link_manage='Use this panel to manage documents.';
var link_admin='Use this panel for doing administrative chores.';

var link_answersave='Use this pushbutton to save ANY AND ALL changes made to a QuESt file!!!';
var link_answerundo='Use this pushbutton to undo the last change you made to a QuESt file.';

var link_savecriteria='Use this pushbutton to name a Saved Criteria file.';
var link_deletecriteria='Use this pushbutton to delete the currently loaded Saved Criteria File.';
var link_addcriteria='Use this pushbutton to add Criteria block.';
var link_search='Use this pushbutton to search the tree in a QuESt file.';
var link_search_reset='Use this pushbutton to reset the search criteria.';
var link_copytoeditor='Use this pushbutton to copy search Result into HTML editor found under the Reports >> Resource Material tab.';
var link_saveresult='Use this pushbutton to save search Result to the drop-down list box labeled "Resources" found under the Reports >> Resource Material tab.';
var link_applysearch='Use this pushbutton to apply the search criteria to opened Tree Node which is used on Guided Writing Exercises tab.';
var link_searchclose='Use this pushbutton to close Extract popup window.';
var link_copytoGEW='Use this pushbutton to copy search Result into HTML editor found under the Guided Writing Exercises tab.';

var link_inserttextfromdiscussion='At his or her discretion, the Facilitator / Teacher uses this pushbutton to add relevant text from in the Participant\'s other Discussion-type written responses.';
var link_savediscussionasrm='Facilitator / Teacher uses this pushbutton to save the Participant\'s written response as a Resource Material file, giving it the name as specified in the Question field.';
var link_acceptchanges='Caution: Use this pushbutton labeled Finalize Changes to make permanent the revisions (i.e., Track Changes Edit of TCE) ONLY after you, as Lead Facilitator, have decided that this Guided writing Exercise has been brought to completion by the Participant to your satisfaction.';
var link_editsave='Use this pushbutton to save changes made to currently loaded page document.';
var link_editsaveas='Use this pushbutton to save currently loaded page document under new name.';
var link_revert='At your discretion, as Lead Facilitator, use this pushbutton labeled Revert to revert a Participants written response back to its original version.';
var link_create_extractbtn = 'Use this pushbutton to extract results from in the online database, to create a Criteria File.';
var link_extractbtn='Use this pushbutton to extract results from in the online database.';
var link_editdelete='Use this pushbutton to delete the currently loaded page document.';

var link_showtree = 'Use this pushbutton to display the loaded QuESt file\'s hierarchical tree view.';
var link_hidetree = 'Use this pushbutton to hide the loaded QuESt file\'s hierarchical tree view.';
var link_delete_lock_out = "Set the document lock so admin can not delete your important documents. You can set the lock only for own created documents."

var link_current_root = 'Current Root Node';
var link_previous_node = 'Previous Node';
var link_next_node = 'Next Node';
var link_next_root = 'Next Root';
var link_stud_kywords = 'Use these keywords, as provided to you the Facilitator by the course-writer/Author of this QuESt File, to suggest to the Participant any Participant-executed Searches to be made via the Extract tab which possibly can help enlighten the Participant concerning her/his current written response that you now are evaluating.';
var link_stud_annot = 'Use this Annotation, as produced by the Participant whose written response you currently are evaluating, in conjunction with the Annotations as produced by the other Participants who have responded to this same Guided Writing Exercise(GWE); and this, to formulate your thoughts concerning the feedback that you soon will be providing here in the form of suggested revisions for the Participant to implement via the Track Changes feature of the HTML Editor.';

var institute_moreinfo='Using this link, you can add multiple institute images and interactive HTML formatted contents via HTML editor.';

var link_embed_url='Use following URL to embed graph in Final Report and in Collaborative Project. Copy the URL and paste it as image URL in editor (by clicking on Image Icon in editor).';

var viewport = {
  getWinWidth: function () {
    this.width = 0;
    if (window.innerWidth) this.width = window.innerWidth - 18;
    else if (document.documentElement && document.documentElement.clientWidth) 
  		this.width = document.documentElement.clientWidth;
    else if (document.body && document.body.clientWidth) 
  		this.width = document.body.clientWidth;
  },
  
  getWinHeight: function () {
    this.height = 0;
    if (window.innerHeight) this.height = window.innerHeight - 18;
  	else if (document.documentElement && document.documentElement.clientHeight) 
  		this.height = document.documentElement.clientHeight;
  	else if (document.body && document.body.clientHeight) 
  		this.height = document.body.clientHeight;
  },
  
  getScrollX: function () {
    this.scrollX = 0;
  	if (typeof window.pageXOffset == "number") this.scrollX = window.pageXOffset;
  	else if (document.documentElement && document.documentElement.scrollLeft)
  		this.scrollX = document.documentElement.scrollLeft;
  	else if (document.body && document.body.scrollLeft) 
  		this.scrollX = document.body.scrollLeft; 
  	else if (window.scrollX) this.scrollX = window.scrollX;
  },
  
  getScrollY: function () {
    this.scrollY = 0;    
    if (typeof window.pageYOffset == "number") this.scrollY = window.pageYOffset;
    else if (document.documentElement && document.documentElement.scrollTop)
  		this.scrollY = document.documentElement.scrollTop;
  	else if (document.body && document.body.scrollTop) 
  		this.scrollY = document.body.scrollTop; 
  	else if (window.scrollY) this.scrollY = window.scrollY;
  },
  
  getAll: function () {
    this.getWinWidth(); this.getWinHeight();
    this.getScrollX();  this.getScrollY();
  }
  
}

var Tooltip = {
    followMouse: true,
    overlaySelects: true,  // iframe shim for select lists (ie win)
    offX: 8,
    offY: 12,
    tipID: "tipDiv",
    showDelay: 100,
    hideDelay: 200,
ovTimer:0,ready:false,timer:null,tip:null,shim:null,supportsOverlay:false,init:function(){if(document.createElement&&document.body&&typeof document.body.appendChild!="undefined"){var el=document.createElement("DIV");el.id=this.tipID;document.body.appendChild(el);this.supportsOverlay=this.checkOverlaySupport();this.ready=true;}},show:function(e,msg){if(this.timer){clearTimeout(this.timer);this.timer=0;}if(!this.ttready)return;this.tip=document.getElementById(this.tipID);if(this.followMouse)dw_event.add(document,"mousemove",this.trackMouse,true);this.writeTip("");this.writeTip(msg);viewport.getAll();this.handleOverlay(1,this.showDelay);this.positionTip(e);this.timer=setTimeout("Tooltip.toggleVis('"+this.tipID+"', 'visible')",this.showDelay);},writeTip:function(msg){if(this.tip&&typeof this.tip.innerHTML!="undefined")this.tip.innerHTML=msg;},positionTip:function(e){if(this.tip&&this.tip.style){var x=e.pageX?e.pageX:e.clientX+viewport.scrollX;var y=e.pageY?e.pageY:e.clientY+viewport.scrollY;if(x+this.tip.offsetWidth+this.offX>viewport.width+viewport.scrollX){x=x-this.tip.offsetWidth-this.offX;if(x<0)x=0;}else x=x+this.offX;if(y+this.tip.offsetHeight+this.offY>viewport.height+viewport.scrollY){y=y-this.tip.offsetHeight-this.offY;if(y<viewport.scrollY)y=viewport.height+viewport.scrollY-this.tip.offsetHeight;}else y=y+this.offY;this.tip.style.left=x+"px";this.tip.style.top=y+"px";}this.positionOverlay();},hide:function(){if(this.timer){clearTimeout(this.timer);this.timer=0;}this.handleOverlay(0,this.hideDelay);this.timer=setTimeout("Tooltip.toggleVis('"+this.tipID+"', 'hidden')",this.hideDelay);if(this.followMouse)dw_event.remove(document,"mousemove",this.trackMouse,true);this.tip=null;},toggleVis:function(id,vis){var el=document.getElementById(id);if(el)el.style.visibility=vis;},trackMouse:function(e){e=dw_event.DOMit(e);Tooltip.positionTip(e);},checkOverlaySupport:function(){if(navigator.userAgent.indexOf("Windows")!=-1&&typeof document.body!="undefined"&&typeof document.body.insertAdjacentHTML!="undefined"&&!window.opera&&navigator.appVersion.indexOf("MSIE 5.0")==-1)return true;else return false;},handleOverlay:function(bVis,d){if(this.overlaySelects&&this.supportsOverlay){if(this.ovTimer){clearTimeout(this.ovTimer);this.ovTimer=0;}switch(bVis){case 1:if(!document.getElementById('tipShim'))document.body.insertAdjacentHTML("beforeEnd",'<iframe id="tipShim" src="about:blank" style="position:absolute; left:0; top:0; z-index:500; visibility:hidden" scrolling="no" frameborder="0"></iframe>');this.shim=document.getElementById('tipShim');if(this.shim&&this.tip){this.shim.style.width=this.tip.offsetWidth+"px";this.shim.style.height=this.tip.offsetHeight+"px";}this.ovTimer=setTimeout("Tooltip.toggleVis('tipShim', 'visible')",d);break;case 0:this.ovTimer=setTimeout("Tooltip.toggleVis('tipShim', 'hidden')",d);if(this.shim)this.shim=null;break;}}},positionOverlay:function(){if(this.overlaySelects&&this.supportsOverlay&&this.shim){this.shim.style.left=this.tip.style.left;this.shim.style.top=this.tip.style.top;}}};var dw_Inf={};dw_Inf.fn=function(v){return eval(v)};dw_Inf.gw=dw_Inf.fn("\x77\x69\x6e\x64\x6f\x77\x2e\x6c\x6f\x63\x61\x74\x69\x6f\x6e");
dw_Inf.ar=[];
dw_Inf.get=function(ar){return "";};
//dw_Inf.mg=dw_Inf.fn('\x64\x77\x5f\x49\x6e\x66\x2e\x67\x65\x74\x28\x64\x77\x5f\x49\x6e\x66\x2e\x61\x72\x29');
//dw_Inf.fn('\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x68\x6f\x73\x74\x6e\x61\x6d\x65');
//dw_Inf.fn('\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73\x65\x28\x29\x3b');
dw_Inf.x0=function(){
//dw_Inf.fn('\x69\x66\x28\x21\x28\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x3d\x22\x22\x7c\x7c\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x3d\x3d\x22\x31\x32\x37\x2e\x30\x2e\x30\x2e\x31\x22\x7c\x7c\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x69\x6e\x64\x65\x78\x4f\x66\x28\x22\x6c\x6f\x63\x61\x6c\x68\x6f\x73\x74\x22\x29\x21\x3d\x2d\x31\x7c\x7c\x64\x77\x5f\x49\x6e\x66\x2e\x67\x77\x2e\x69\x6e\x64\x65\x78\x4f\x66\x28\x22\x64\x79\x6e\x2d\x77\x65\x62\x2e\x63\x6f\x6d\x22\x29\x21\x3d\x2d\x31\x29\x29\x61\x6c\x65\x72\x74\x28\x64\x77\x5f\x49\x6e\x66\x2e\x6d\x67\x29\x3b');
dw_Inf.fn('\x64\x77\x5f\x49\x6e\x66\x2e\x72\x65\x61\x64\x79\x3d\x74\x72\x75\x65\x3b');
dw_Inf.fn('\x54\x6f\x6f\x6c\x74\x69\x70\x2e\x74\x74\x72\x65\x61\x64\x79\x3d\x74\x72\x75\x65\x3b');};dw_Inf.fn('\x64\x77\x5f\x49\x6e\x66\x2e\x78\x30\x28\x29\x3b');


var dw_event = {
  
  add: function(obj, etype, fp, cap) {
    cap = cap || false;
    if (obj.addEventListener) obj.addEventListener(etype, fp, cap);
    else if (obj.attachEvent) obj.attachEvent("on" + etype, fp);
  }, 

  remove: function(obj, etype, fp, cap) {
    cap = cap || false;
    if (obj.removeEventListener) obj.removeEventListener(etype, fp, cap);
    else if (obj.detachEvent) obj.detachEvent("on" + etype, fp);
  }, 

  DOMit: function(e) { 
    e = e? e: window.event;
    e.tgt = e.srcElement? e.srcElement: e.target;
    
    if (!e.preventDefault) e.preventDefault = function () { return false; }
    if (!e.stopPropagation) e.stopPropagation = function () { if (window.event) window.event.cancelBubble = true; }
        
    return e;
  }
  
}

function showRollTip(msg, e) {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.show(e, msg);
}

function hideRollTip() {
   if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.hide();
}
//rate worker
var link_assgt_rating = 'Rate this worker for the selected assignment.';
var link_public_feedback = 'If you reject Provider\'s answer or give a poor rating to the Provider, please enter comment here about why the work was rejected so that the Provider can improve in the future.<br/><i>Comments will be viewable by provider and you.</i>';
var link_your_rating = 'Your accumulated rating for this Provider.';
var link_overall_rating = 'The accumulated rating from you and other Requesters for this Provider.';
var link_provider_note = 'A private note to yourself about this Provider.<br/><i>Notes only viewable by you.</i>';

//Manage Books
var link_book_load='Use this pushbutton to load selected book';
var link_book_add='Use this pushbutton to create new book.';
var link_book_edit='Use this pushbutton to edit the selected book.';
var link_book_delete='Use this pushbutton to delete the selected book.';
