//************************************************************************************* 
//*                               fnShowWindowStatus.js
//*                               ---------------------                  
//*                                                                  
//*  Desc: Function - Set the status window message when a link is moused over                             
//*                                                                  
//*  Example of Call:                                                 
//*  ----------------                                                
//*  <SCRIPT LANGUAGE="Javascript" SRC="/csjs/fnShowWindowStatus.js"></SCRIPT> 
//*   fnShowWindowStatus(inMsg)
//*
//* Maintenance                                                       
//* -----------   
//*************************************************************************************
//document.domain="rockwellautomation.com";

function fnShowWindowStatus(inMsg)
{
    window.status = inMsg;
    return true;
}