

	// Send Server-Side Actions to the Hidden IFRAME
	function SYS_sendAction( act )
	{
		if (document.hidden_action) {
			document.hidden_action.location.href = act;
		} else if(top.hidden_action) {
			top.hidden_action.location.href = act;
		}
	}

	function SYS_stallFunction( time, func ) {
		self.setTimeout(func, time);
	}


	function SYS_initializeImages() {
		var imgs = document.images;		
		for(x=0;x<imgs.length;x++) {
			if (imgs[x].alt != '') {
				ALT_processAttribute(imgs[x]);
			}			
		}
	}

	function SYS_LoadDocument(init_imgs) {
		if (init_imgs) { SYS_initializeImages(); }
		PUMH_generatePopUps_001();
		window.status = '';
	}

	var dashboard_enabled = true;
	var active_dashboard_icon = 'null';
	function dashboard_Click(item, dashboard_id, icon_id)
	{
		return dashboard_SetDetails(item, dashboard_id, icon_id);
	}

	function dashboard_DblClick(targ, url)
	{
		eval(targ).location.href = url;
	}

	function dashboard_OffClick()
	{
		cur_active_dashboard_icon_text = document.getElementById('dashboard_icon_text_'+active_dashboard_icon);
		if (cur_active_dashboard_icon_text) {
			cur_active_dashboard_icon_text.className = 'dashboard-icon-text';
		}
	}

	function dashboard_SetDetails(item, dashboard_id, icon_id)
	{
		if (this_icon != active_dashboard_icon) {
			dashboard_detail = top.document.getElementById('dashboard_detail_' + dashboard_id);
			if (dashboard_detail) {
				dashboard_detail.innerHTML = item;
			}
			dashboard_OffClick();
			var this_icon = dashboard_id+'_'+icon_id;					
			dashboard_icon_text = document.getElementById('dashboard_icon_text_'+this_icon);
			if (dashboard_icon_text) {
				dashboard_icon_text.className = 'dashboard-icon-text-selected';
			}					
			active_dashboard_icon = this_icon;
		}
	}

