
/***********************************************************************

  Copyright (C) 2006  Oliver Poignant (oliver@poignant.se)

  This file is part of the TVK project.

************************************************************************/

function ep_details_js(show_title, url) {
	var obj = null;
	
	if(window.XMLHttpRequest)
		obj = new XMLHttpRequest();
	else if(window.ActiveXObject)
		obj = new ActiveXObject("Microsoft.XMLHTTP");
	else 
		return;
	
	obj.open ('GET', url, true);
	obj.onreadystatechange = function() {
		
		if(obj.readyState == 4) {
			overlib(obj.responseText, STICKY, MOUSEOFF, DELAY, 250, TIMEOUT, 3000, CLOSECLICK, CLOSETEXT, 'St&auml;ng', CLOSEFONTCLASS, 'closeStyleClass', HAUTO, VAUTO, OFFSETY, -10, OFFSETX, 30, WIDTH, 300, CAPTION, show_title);
		} else {
			return "slick";
		}
	}
	
	obj.send (null);
	
}

