
var chat_timer=setTimeout("PopUpChat('Live Chat!')", 120 * 1000);
var chat_dialog = null;

function PopUpChat(text)
{
	//chat dialog
	chat_dialog =  
	        new YAHOO.widget.Panel("wait",   
	            { width:"260px",  
				  height:"160px",  
	              fixedcenter:true,  
	              close:true,  
	              draggable:true,  
	              zindex:150000, 
	              modal:false, 
	              visible:false 
	            }  
	        ); 
	 
	var body = '<br/><div>';
	body += '<p><img src="livezilla/chat_small.png" align="left"/>';
	body += '<textarea style="height:80px;width:160px;overflow:auto">Buna ziua.\r\nSunt consultantul dvs. Cu ce va pot ajuta?</textarea></p>';
	body += '<center><input type="button" style="width:120px;height:28px;" value="Start chat" onclick="CloseChatAlert();"/></center>';
	body += '</div>';
	chat_dialog.setHeader(text); 
	chat_dialog.setBody(body); 
	chat_dialog.render(document.body); 	
	chat_dialog.show();
}

function CloseChatAlert()
{
	chat_dialog.hide();
	window.open('http://www.eurolines.ro/livezilla/chat.php?intgroup=RXVyb2xpbmVz&hg=Pw__&reset=true','chat','status=0,toolbar=0,top=150,left=150,width=600,height=600');
}
