//---------------------------------------------------------
//
// File Name        : GeneralJSFunctions.js
// Copyright        : (c) Micro Focus Limited. 2004
// Description      : JavaScript General Function
// Modification History 
// 17May2006      MBW   Created from the Page template
//
//---------------------------------------------------------

<!--
// JavaScript Document

var currentSubMenu = null;
var oldsubmenu="";
var detect = navigator.userAgent.toLowerCase(),browser;
if (checkIt('konqueror'))
{
	browser = "Konqueror";
	OS = "Linux";
}
else if (checkIt('safari')) browser = "Safari"
else if (checkIt('omniweb')) browser = "OmniWeb"
else if (checkIt('opera')) browser = "Opera"
else if (checkIt('webtv')) browser = "WebTV";
else if (checkIt('icab')) browser = "iCab"
else if (checkIt('msie')) browser = "Internet Explorer"
else if (!checkIt('compatible')) {browser = "Netscape Navigator"}
else browser = "An unknown browser";

var t=null;
var currentsub22=null;

function hideMenu2(){
	currentsub22=currentSubMenu;
	t=setTimeout('hideMenu22()',1000);
}
function hideMenu22() {
	if (currentsub22 != null)
	{
		currentsub22.style.display = 'none';
	}
}

function clearTimeOut()
{
	if (t!=null)
		clearTimeout(t);
}

function showMenu(intID, objTD) {
	currentsub22=null;
	clearTimeout(t);
	var objMenu = document.getElementById('dropmenu_' + intID)
	if (currentSubMenu != objMenu && currentSubMenu != null)
	{
		currentSubMenu.style.display = 'none';
	}
	currentSubMenu = objMenu;
	tmpLeft = 0;
	for(var i = objTD; i!=null; i=i.offsetParent){
		tmpLeft+=i.offsetLeft;
	}
	objMenu.style.left = tmpLeft + 'px';
	if (browser == "Internet Explorer") {
		objMenu.style.top = '81px';
	}
	objMenu.style.display = 'block';
}


/*
function hideMenu() {
	if (currentSubMenu != null)
	{
		currentSubMenu.style.display = 'none';
	}
}
*/

function SetBgColor(intID,rgbColor){
	hideothers();
	var objMenu = document.getElementById('table_' + intID);
	if (objMenu!=null)
	{
		if (objMenu.style.backgroundColor!=rgbColor)
		{
			objMenu.style.backgroundColor=rgbColor;
			//alert(rgbColor);
		}
	}
}

function hideothers(){
/*	var objmenu="";
	for (i = 0; i <= 200; i++)
	{
	objMenu = document.getElementById('table_' + i)
	if (objMenu!=null)
		{
			objMenu.style.backgroundColor='#6C7B99';
		}
	}
*/
}

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

function setLinkIE(object,who)
{
	/*Fix for IE whoe doesnt like links without href and mozilla that doesn't like href links because it looses the showing of the menu.*/
	if (who=='1'){
		object.style.textDecoration='underline';
		object.style.color='#BE6561';	
	}else{
		object.style.textDecoration='none';
		object.style.color='#FFFFFF';	
	}
}
function setLinkIEa(object,who)
{
	/*Fix for IE whoe doesnt like links without href and mozilla that doesn't like href links because it looses the showing of the menu.*/
	if (who=='1'){
		object.style.textDecoration='underline';
		object.style.color='#F3E679';	
	}else{
		object.style.textDecoration='none';
		object.style.color='#FFFFFF';	
	}
}
function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
}

// -----------------------------------------------------------------------------------
// START Flash Fix Functions
// -----------------------------------------------------------------------------------

//v1.0
//Copyright 2006 Adobe Systems, Inc. All rights reserved.
function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '<object ';
  for (var i in objAttrs)
    str += i + '="' + objAttrs[i] + '" ';
  str += '>';
  for (var i in params)
    str += '<param name="' + i + '" value="' + params[i] + '" /> ';
  str += '<embed ';
  for (var i in embedAttrs)
    str += i + '="' + embedAttrs[i] + '" ';
  str += ' ></embed></object>';

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "id":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}


// -----------------------------------------------------------------------------------
// END Flash Fix Functions
// -----------------------------------------------------------------------------------


<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Premshree Pillai (premshree@hotmail.com ) -->
<!-- Web Site:  http://www.qiksearch.com -->
<!-- Begin

window.onerror = null;
 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS4 = (bName == "Netscape" && bVer >= 4);
 var IE4 = (bName == "Microsoft Internet Explorer" 
 && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" 
 && bVer < 4);
 var blink_speed=100;
 var i=0;
 
if (NS4 || IE4) {
 if (navigator.appName == "Netscape") {
 layerStyleRef="layer.";
 layerRef="document.layers";
 styleSwitch="";
 }else{
 layerStyleRef="layer.style.";
 layerRef="document.all";
 styleSwitch=".style";
 }
}

//BLINKING
function Blink(layerName){
 if (NS4 || IE4) { 
 if(i%2==0)
 {
 eval(layerRef+'["'+layerName+'"]'+
 styleSwitch+'.visibility="visible"');
 }
 else
 {
 eval(layerRef+'["'+layerName+'"]'+
 styleSwitch+'.visibility="hidden"');
 }
 } 
 if(i<1)
 {
 i++;
 } 
 else
 {
 i--
 }
 setTimeout("Blink('"+layerName+"')",800);
}


/***********************************************
* Dynamic Countdown script- © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function cdtime(container, targetdate){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.currentTime=new Date()
this.targetdate=new Date(targetdate)
this.timesup=false
this.updateTime()
}

cdtime.prototype.updateTime=function(){
var thisobj=this
this.currentTime.setSeconds(this.currentTime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second
}

cdtime.prototype.displaycountdown=function(baseunit, functionref){
this.baseunit=baseunit
this.formatresults=functionref
this.showresults()
}

cdtime.prototype.showresults=function(){
var thisobj=this


var timediff=(this.targetdate-this.currentTime)/1000 //difference btw target date and current date, in seconds
if (timediff<0){ //if time is up
this.timesup=true
this.container.innerHTML=this.formatresults()
return
}
var oneMinute=60 //minute unit in seconds
var oneHour=60*60 //hour unit in seconds
var oneDay=60*60*24 //day unit in seconds
var dayfield=Math.floor(timediff/oneDay)
var hourfield=Math.floor((timediff-dayfield*oneDay)/oneHour)
var minutefield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour)/oneMinute)
var secondfield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour-minutefield*oneMinute))
if (this.baseunit=="hours"){ //if base unit is hours, set "hourfield" to be topmost level
hourfield=dayfield*24+hourfield
dayfield="n/a"
}
else if (this.baseunit=="minutes"){ //if base unit is minutes, set "minutefield" to be topmost level
minutefield=dayfield*24*60+hourfield*60+minutefield
dayfield=hourfield="n/a"
}
else if (this.baseunit=="seconds"){ //if base unit is seconds, set "secondfield" to be topmost level
var secondfield=timediff
dayfield=hourfield=minutefield="n/a"
}
this.container.innerHTML=this.formatresults(dayfield, hourfield, minutefield, secondfield)
setTimeout(function(){thisobj.showresults()}, 1000) //update results every second
}

/////CUSTOM FORMAT OUTPUT FUNCTIONS BELOW//////////////////////////////

//Create your own custom format function to pass into cdtime.displaycountdown()
//Use arguments[0] to access "Days" left
//Use arguments[1] to access "Hours" left
//Use arguments[2] to access "Minutes" left
//Use arguments[3] to access "Seconds" left

//The values of these arguments may change depending on the "baseunit" parameter of cdtime.displaycountdown()
//For example, if "baseunit" is set to "hours", arguments[0] becomes meaningless and contains "n/a"
//For example, if "baseunit" is set to "minutes", arguments[0] and arguments[1] become meaningless etc


function formatresults(){
if (this.timesup==false){//if target date/time not yet met
var displaystring=arguments[0]+" days "+arguments[1]+" hours "+arguments[2]+" minutes "+arguments[3]+" seconds left until March 23, 2009 18:25:00"
}
else{ //else if target date/time met
var displaystring="Future date is here!"
}
return displaystring
}

function formatresults2(){
if (this.timesup==false){ //if target date/time not yet met
var displaystring="<p>Only <span class='lcdstyle'>"+arguments[0]+"<small>days</small> "+arguments[1]+"<small>hours</small> "+arguments[2]+"<small>mins</small> "+arguments[3]+"<small>secs</small></span> to recover your lost revenue.</span></p>"
}
else{ //else if target date/time met
var displaystring="" //Don't display any text
alert("Christmas is here!") //Instead, perform a custom alert
}
return displaystring
}



/***********************************************
Begin Image Mouseover Code
***********************************************/

image0 = new Image();
image0.src = "images/case-1-over.jpg";

image1 = new Image();
image1.src = "images/case-2-over.jpg";

image2 = new Image();
image2.src = "images/case-3-over.jpg";

image3 = new Image();
image3.src = "images/case-4-over.jpg";

image4 = new Image();
image4.src = "images/case-5-over.jpg";

image5 = new Image();
image5.src = "images/case-6-over.jpg";

/***********************************************
End Image Mouseover Code
***********************************************/

/***********************************************
Start menu dropdowns 
***********************************************/

//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="/aboutmcbee/">Firm At a Glance</a>'
menu1[1]='<a href="/aboutmcbee/testimonials/">Testimonials</a>'
menu1[2]='<a href="/aboutmcbee/inthenews/">In the News</a>'
menu1[3]='<a href="/aboutmcbee/contact/">Contact Information</a>'
menu1[4]='<a href="/aboutmcbee/events/">Events</a>'
menu1[5]='<a href="/aboutmcbee/privacy/">Privacy Statement</a>'
menu1[6]='<a href="/aboutmcbee/legal/">Legal</a>'
//menu1[7]='<a href="/careers/">Careers</a>'

//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href="/services/hospitalhealth/">Hospitals/Health Systems</a>'
menu2[1]='<a href="/services/homehealth/">Home Health Care</a>'
menu2[2]='<a href="/services/longtermcare/">Long Term Care Facilities</a>'
menu2[3]='<a href="/services/community/">Community Health & Human Services</a>'
menu2[4]='<a href="/services/physiciangroup/">Physician Group</a>'

//Contents for menu 3, and so on
var menu3=new Array()
menu3[0]='<a href="/affiliates/">HCE LLC</a>'

//Contents for menu 4, and so on
var menu4=new Array()
menu4[0]='<a href="/Resources/">Customer Successes</a>'
menu4[1]='<a href="/Resources/">Events</a>'
menu4[2]='<a href="/Resources/">User Communities</a>'
menu4[3]='<a href="/Resources/">Newsletters</a>'

		
var menuwidth='300px' //default menu width
var menubgcolor='Firebrick'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

/***********************************************
End menu dropdowns 
***********************************************/


function popupprint(url)
{
	newwindow=window.open(url,'print','height=500,width=700,scrollbars=1,resizable=1,toolbar=1,top=20,left=20,');
	if (window.focus) {newwindow.focus()}
	return false;
}

function rotateEvery(sec)
{
     var Quotation=new Array()
     
    // QUOTATIONS
     Quotation[0] = '<img src="/images/medicare3.jpg" alt="Medicare Episode Management" align="left" style="margin:6px 14px 0px 0px;"><br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/homehealth/medicare/">Medicare Episode Management</A> - This service is designed to ensure the provision of appropriate levels of care to Medicare beneficiaries.<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/homehealth/medicare/">read more</a></div><img src="/images/services-denial-sm.jpg" alt="Denial Management" align="left" style="margin:6px 14px 0px 0px;"><br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/hospitalhealth/denialmanagement/">Denial Management</A> - Financial success in today’s health care environment requires a denial avoidance program that targets all aspects of denial management.<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/hospitalhealth/denialmanagement/>read more</a></div>';
     // HomeCare
     Quotation[1] = '<img src="/images/oasis90x60.jpg" alt="OASIS Accuracy Audit" align="left" style="margin:6px 14px 0px 0px;"><br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/homehealth/oasis/">OASIS Accuracy Audit</A> - Poor OASIS coding reduces Medicare reimbursement, distorts outcome reporting, and jeopardizes the financial health of an agency...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/homehealth/oasis/">read more</a></div><img src="/images/medicare3.jpg" alt="Medicare Episode Management" align="left" style="margin:6px 14px 0px 0px;"> <br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/homehealth/medicare/">Medicare Episode Management</a> - Designed to ensure the provision of appropriate levels of care to Medicare beneficiaries...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/homehealth/medicare/">read more</a></div>';
     //Hosiptals
     Quotation[2] = '<img src="/images/compliance90x60.jpg" alt="Compliance" align="left" style="margin:6px 14px 0px 0px;"><br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/hospitalhealth/compliance/">Compliance</A> - Research of health care regulations, documentation of opinion, continuous regulatory and training...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/hospitalhealth/compliance/">read more</a></div><img src="/images/internalaudit90x60.jpg" alt="Internal Audit" align="left" style="margin:6px 14px 0px 0px;"> <br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/hospitalhealth/internalaudit/">Internal Audit</A> - Ensuring regulatory, financial, and operational integrity.  Internal audit activities vary from assessing financial controls, to reviewing...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/hospitalhealth/internalaudit/">read more</a></div>';
     // Long Term Care
     Quotation[3] = '<img src="/images/services-cash-sm.jpg" alt="Cash Acceleration" align="left" style="margin:6px 14px 0px 0px;"><br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/longtermcare/cash/">Cash Acceleration</A> - Expertise quickly resolve problematic Medicare accounts with minimal impact on client operations...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/longtermcare/cash/">read more</a></div><img src="/images/services-financial-sm.jpg" alt="Financial Services" align="left" style="margin:6px 14px 0px 0px;"> <br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/longtermcare/finance/">Financial Services</a> - We identify opportunities to improve profitability and supply a team of financial, clinical, information system, and operations experts...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/longtermcare/finance/">read more</a></div>';
     //Physican
     Quotation[4] = '<img src="/images/services-hippa-sm.jpg" alt="HIPAA Services" align="left" style="margin:6px 14px 0px 0px;"><br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/physiciangroup/hipaa/">HIPAA Services</A> - National Standards to Protect the Privacy of Personal Health Information...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/physiciangroup/hipaa/">read more</a></div><img src="/images/improvement90x60.jpg" alt="Operations Improvement" align="left" style="margin:6px 14px 0px 0px;"> <br style=" line-height:1px;"><br style=" line-height:8px;"><A HREF="/services/physiciangroup/operations/">Operations Improvement</a> - Reimbursement that does not keep pace with the ever-increasing costs to provide quality service presents one of the greatest challenges...<div style="padding:5px 0px 12px 0px;"><img src="/images/mark_0_3.gif" alt="" style="margin:0px 6px 6px 0px;" align="middle"><a href="/services/physiciangroup/operations/">read more</a></div>';

     var which = Math.round(Math.random()*(Quotation.length - 1));
     document.getElementById('textrotator').innerHTML = Quotation[which];
     
     setTimeout('rotateEvery('+sec+')', sec*5000);
}

// end javscript -->

