/*
'**************************************************************
' Copyright (c) Epic Systems Corporation 1999-2003
' Name: intkeepalive.js
' Author:
'
' Description:  Javascript function to keepalive host application
'               session when in integration mode.
'
' Revision History
'**
*/

var intKeepAliveCnt = 0;

function intKeepalive(){
	
	/*
	
	var img;
	var source;
	
	source = "http://hostsite/keepalive.asp"
	
	if (document.images){	
		intKeepAliveCnt++;
		img = new Image();
		img.src = source + "?cnt=" + intKeepAliveCnt;
	} 
	else if (window.frames['intKeepAliveFrameIE']){		// use the iframe if it's available
		window.frames['intKeepAliveFrameIE'].location.reload();
	} 
	else if (document.layers['intKeepAliveFrameNN']){ 	// use the layer if it's available
		document.layers['intKeepAliveFrameNN'].src = document.layers['intKeepAliveFrameNN'].src
	}
	
	*/
	
}

