
//<![CDATA[
var myAjax = false;
var event_preview = function(flag) 
{
    var param = (flag) ? "t=1," : "";
    myAjax = new Ajax.PeriodicalUpdater(
        "event_viewer",
        "javascript/http_requests/event_viewer.php",
        {
            parameters:param,
            onSuccess:handleticker,
            frequency:7
        }
    );
}
//]]>

var StartWindow = {

		viewhelp2:'',
		coordinato_x:'',
		coordinato_y:'',

	    open_window:function(cx, cy, viewhelp, bild_url, name_descr)
	    {
	    	
	        if (viewhelp)
	        {
	        	StartWindow.close_window();
	        	document.getElementById('popup').style.visibility = 'hidden';
				this.viewhelp2 = viewhelp;
				this.coordinato_x = cx;
				this.coordinato_y = cy;

	            view_x = cx;
	            view_y = cy;
	            StartWindow.fillup_content(view_x, view_y, viewhelp, '<table style="width:338px;height:253px;background-image:url(http://www.consulting-company.at/cms/images/start/'+viewhelp+'); background-repeat:no-repeat;"><tr style="height:220px;"><td align="center" valign="middle"><a href="'+bild_url+'"><img src="images/spacer.gif" border="0" width="178" height="118" onmouseout="javascript:StartWindow.close_window();" /></a></td></tr><tr><td>&nbsp;'+name_descr+'</td></tr></table>');
	        }
	    },
	    
	    open_window2:function(cx, cy, viewhelp, bild_url, name_descr)
	    {
	    	
	        if (viewhelp)
	        {
	        	StartWindow.close_window();
	        	document.getElementById('popup').style.visibility = 'hidden';
				this.viewhelp2 = viewhelp;
				this.coordinato_x = cx;
				this.coordinato_y = cy;
 
	            view_x = cx;
	            view_y = cy; 
	            StartWindow.fillup_content(view_x, view_y, viewhelp, '<table style="width:442px;height:332px;background-image:url(http://www.consulting-company.at/cms/images/startseite/'+viewhelp+'); background-repeat:no-repeat;"><tr style="height:290px;"><td align="center" valign="middle"><a href="'+bild_url+'"><img src="images/spacer.gif" border="0" width="178" height="118" onmouseout="javascript:StartWindow.close_window();" /></a></td></tr><tr><td>&nbsp;'+name_descr+'</td></tr></table>');
	        }
	    },
	     
	    fillup_content:function(cx, cy, viewhelp, flag)
	    {
	    	var e = document.getElementById('popup').style;
	    	
			document.getElementById('popup').style.visibility = 'visible';
			cx = cx+10;
			cy = cy+10;  
			e.left = cx + "px";
			e.top = cy + "px"; 
	    	$('popup').innerHTML = flag;
	    },
	    
	    close_window:function() 
	    {
	    	$('popup').innerHTML = '';
	    }
	    
	};


var handleticker  = function(r)
{
    if(r.responseText!='') {
        $('event_viewer_live').innerHTML = r.responseText;
    	Effect.Appear('event_viewer_live');

        window.setTimeout('Effect.Fade(\'event_viewer_live\', {duration:.3})',6000);


 
    }
}

  
function PopUp(file, height, width)
{ 

    helpwindow = window.open(file,"hilfe","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width="+width+",height="+height+",top=320,left=350");
    helpwindow.focus();
    return false;
}
