var scriptPopup = null;

function EvalScriptPopup() {    
    if (scriptPopup != null)
        eval(scriptPopup);
}

var dhtmlwindow=
{
    imagefiles: ['windowfiles/min.gif', 'http://' + window.location.host + (window.location.pathname.substr(1, 6).toLowerCase() == 'biblio' ? '/BiblioBpeWebApplication' : '') + '/images/interface/contour/close.gif', 'windowfiles/restore.gif', 'windowfiles/resize.gif'], 
ajaxbustcache: true, 
ajaxloadinghtml: '<b>Loading Page. Please wait...</b>',

zIndexvalue:100,
tobjects: [], 
lastactivet: {},

init:function(t){
	var domwindow=document.createElement("div") 
	domwindow.id=t
	domwindow.className="dhtmlwindow"
	var domwindowdata=''
	domwindowdata = '<div class="drag-handle"><img src="http://' + window.location.host + (window.location.pathname.substr(1, 6).toLowerCase() == "biblio" ? "/BiblioBpeWebApplication" : "") + '/images/WebControls/WindowPopup/arrow.gif" /> '
	domwindowdata+='DHTML Window <div class="drag-controls"><img src="'+this.imagefiles[1]+'" title="Close" /></div>'
	domwindowdata+='</div>'
	domwindowdata+='<div class="drag-contentarea"></div>'
	domwindowdata+='<div class="drag-statusarea"><div class="drag-resizearea" style="background: transparent url('+this.imagefiles[3]+') top right no-repeat;">&nbsp;</div></div>'
	domwindowdata+='</div>'
	domwindow.innerHTML=domwindowdata
	document.getElementById("dhtmlwindowholder").appendChild(domwindow)
	//this.zIndexvalue=(this.zIndexvalue)? this.zIndexvalue+1 : 100 
	var t=document.getElementById(t)
	var divs=t.getElementsByTagName("div")
	for (var i=0; i<divs.length; i++){ 
		if (/drag-/.test(divs[i].className))
			t[divs[i].className.replace(/drag-/, "")]=divs[i] 
	}
	//t.style.zIndex=this.zIndexvalue 
	t.handle._parent=t 
	t.resizearea._parent=t 
	t.controls._parent=t 
	t.onclose=function(){return true} 
	t.onmousedown=function(){dhtmlwindow.setfocus(this)} 
	t.handle.onmousedown=dhtmlwindow.setupdrag 
	t.resizearea.onmousedown=dhtmlwindow.setupdrag
	t.controls.onclick=dhtmlwindow.enablecontrols
	t.show=function(){dhtmlwindow.show(this)}
	t.hide=function(){dhtmlwindow.hide(this)}
	t.close=function(){dhtmlwindow.close(this)} 
	t.setSize=function(w, h){dhtmlwindow.setSize(this, w, h)} 
	t.moveTo=function(x, y){dhtmlwindow.moveTo(this, x, y)} 
	t.isResize=function(bol){dhtmlwindow.isResize(this, bol)} 
	t.isScrolling=function(bol){dhtmlwindow.isScrolling(this, bol)} 
	t.load=function(contenttype, contentsource, title){dhtmlwindow.load(this, contenttype, contentsource, title)}
	this.tobjects[this.tobjects.length]=t
	return t
},

open:function(t, contenttype, contentsource, title, attr, recalonload){
	var d=dhtmlwindow
	function getValue(Name){
		var config=new RegExp(Name+"=([^,]+)", "i") 
		return (config.test(attr))? parseInt(RegExp.$1) : 0
	}
	if (document.getElementById(t)==null)
		t=this.init(t) 
	else
	{
		t=document.getElementById(t);
	}
	
	t.style.visibility="hidden"
	t.style.display="none"	
	this.setfocus(t)
	t.setSize(getValue(("width")), (getValue("height")))
	var xpos=getValue("center")? "middle" : getValue("left")
	var ypos=getValue("center")? "middle" : getValue("top") 
	//t.moveTo(xpos, ypos) //Position window
	if (typeof recalonload!="undefined" && recalonload=="recal" && this.scroll_top==0){ 
		if (window.attachEvent && !window.opera) 
			this.addEvent(window, function(){setTimeout(function(){t.moveTo(xpos, ypos)}, 400)}, "load")
		else
			this.addEvent(window, function(){t.moveTo(xpos, ypos)}, "load")
	}
	t.isResize(getValue("resize")) 
	t.isScrolling(getValue("scrolling")) 	
	t.contentarea.style.display="block"
	t.moveTo(xpos, ypos)
	t.load(contenttype, contentsource, title)
	return t
},

setSize:function(t, w, h){
	t.style.width=Math.max(parseInt(w), 150)+"px"
	t.contentarea.style.height=Math.max(parseInt(h), 100)+"px"
},

moveTo:function(t, x, y){
	this.getviewpoint() 
	var h = parseInt(t.contentarea.style.height);
	var w = parseInt(t.style.width);

	t.style.left=(x=="middle")? this.scroll_left+(this.docwidth-w)/2+"px" : this.scroll_left+parseInt(x)+"px"
	t.style.top=(y=="middle")? this.scroll_top+(this.docheight-h)/2+"px" : this.scroll_top+parseInt(y)+"px"
},

isResize:function(t, bol){ 
	t.statusarea.style.display=(bol)? "block" : "none"
	t.resizeBool=(bol)? 1 : 0
},

isScrolling:function(t, bol){
	t.contentarea.style.overflow=(bol)? "auto" : "hidden"
},

load:function(t, contenttype, contentsource, title){
	if (t.isClosed){
//		alert("DHTML Window has been closed, so no window to load contents into. Open/Create the window again.")
		return
	}
	
	var contenttype=contenttype.toLowerCase()
	
	if (typeof title!="undefined")
	{
		var spanTag = document.createElement('span');
        spanTag.id = 'dhtmlTitle';
        spanTag.innerHTML = '&nbsp;' + title + ' ';
        t.handle.replaceChild(spanTag, t.handle.firstChild.nextSibling); 
	}
	if (contenttype=="inline")
		t.contentarea.innerHTML=contentsource
	else if (contenttype=="div"){
		var inlinedivref=document.getElementById(contentsource)
		t.contentarea.innerHTML=(inlinedivref.defaultHTML || inlinedivref.innerHTML)
		if (!inlinedivref.defaultHTML)
			inlinedivref.defaultHTML=inlinedivref.innerHTML 
		inlinedivref.innerHTML=""
		inlinedivref.style.display="none"
	}
	else if (contenttype=="iframe")
		{
			t.contentarea.style.overflow="hidden"
			if (!t.contentarea.firstChild || t.contentarea.firstChild.tagName!="IFRAME")
				t.contentarea.innerHTML='<iframe src="about:blank" frameborder=0 style="border:0; margin:0; padding:0; width:100%; height: 100%" id="_iframe-'+t.id+'" name="_iframe-'+t.id+'"></iframe>'
			else
			{
				document.getElementById("_iframe-"+t.id).src = 'about:blank';				
			}
			setTimeout(function(){window.frames["_iframe-"+t.id].location.replace(contentsource)},100);
		}
	else if (contenttype=="ajax"){
		this.ajax_connect(contentsource, t) 
	}
	t.style.visibility="visible"
	t.style.display="block"
	t.contentarea.datatype=contenttype 
},

setupdrag:function(e){
	var d=dhtmlwindow 
	var t=this._parent
	d.etarget=this 
	var e=window.event || e
	d.initmousex=e.clientX
	d.initmousey=e.clientY
	d.initx=parseInt(t.offsetLeft) 
	d.inity=parseInt(t.offsetTop)
	d.width=parseInt(t.offsetWidth)
	d.contentheight=parseInt(t.contentarea.offsetHeight) 
	if (t.contentarea.datatype=="iframe"){ 
		t.style.backgroundColor="#F8F8F8" 
		t.contentarea.style.visibility="hidden"
	}
	document.onmousemove=d.getdistance 
	document.onmouseup=function(){
		if (t.contentarea.datatype=="iframe"){
			t.contentarea.style.backgroundColor="white"
			t.contentarea.style.visibility="visible"
		}
		d.stop()
	}
	return false
},

getdistance:function(e){
	var d=dhtmlwindow
	var etarget=d.etarget
	var e=window.event || e
	d.distancex=e.clientX-d.initmousex
	d.distancey=e.clientY-d.initmousey
	if (etarget.className=="drag-handle")
		d.move(etarget._parent, e)
	else if (etarget.className=="drag-resizearea")
		d.resize(etarget._parent, e)
	return false
},

getviewpoint:function(){
	var ie=document.all && !window.opera
	var domclientWidth=document.documentElement && parseInt(document.documentElement.clientWidth) || 100000 
	this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body 
	this.scroll_top=(ie)? this.standardbody.scrollTop : window.pageYOffset
	this.scroll_left=(ie)? this.standardbody.scrollLeft : window.pageXOffset
	this.docwidth=(ie)? this.standardbody.clientWidth : (/Safari/i.test(navigator.userAgent))? window.innerWidth : Math.min(domclientWidth, window.innerWidth-16)
	this.docheight=(ie)? this.standardbody.clientHeight: window.innerHeight
},

rememberattrs:function(t){ 
	this.getviewpoint() 
	t.lastx=parseInt((t.style.left || t.offsetLeft))-dhtmlwindow.scroll_left 
	t.lasty=parseInt((t.style.top || t.offsetTop))-dhtmlwindow.scroll_top
	t.lastwidth=parseInt(t.style.width)
},

move:function(t, e){
	t.style.left=Math.max(0,dhtmlwindow.distancex+dhtmlwindow.initx)+"px"
	t.style.top=Math.max(0,dhtmlwindow.distancey+dhtmlwindow.inity)+"px"
},

resize:function(t, e){
	t.style.width=Math.max(dhtmlwindow.width+dhtmlwindow.distancex, 150)+"px"
	t.contentarea.style.height=Math.max(dhtmlwindow.contentheight+dhtmlwindow.distancey, 100)+"px"
},

enablecontrols:function(e){
	var d=dhtmlwindow
	/*var sourceobj=window.event? window.event.srcElement : e.target 
	if (sourceobj != null)	
		if (/Close/i.test(sourceobj.getAttribute("title")))
			d.close(this._parent)
	else
		d.close(this._parent)*/
	
	d.close(this._parent)
			
	return false
},

close:function(t){
	try{
		var closewinbol=t.onclose()
	}
	catch(err){ 
		var closewinbol=true
 }
	finally{ 
		if (typeof closewinbol=="undefined"){
//			alert("An error has occured somwhere inside your \"onclose\" event handler")
			var closewinbol=true
		}
	}
	if (closewinbol){ 
		if (window.frames["_iframe-"+t.id])
			window.frames["_iframe-"+t.id].location.replace("about:blank")
		else
			t.contentarea.innerHTML=""
		t.style.display="none"
		t.isClosed=true
	}
	return closewinbol
},


setopacity:function(targetobject, value){
	if (!targetobject)
		return
	if (targetobject.filters && targetobject.filters[0]){
		if (typeof targetobject.filters[0].opacity=="number") 
			targetobject.filters[0].opacity=value*100
		else //IE 5.5
			targetobject.style.filter="alpha(opacity="+value*100+")"
		}
	else if (typeof targetobject.style.MozOpacity!="undefined") 
		targetobject.style.MozOpacity=value
	else if (typeof targetobject.style.opacity!="undefined")
		targetobject.style.opacity=value
},

setfocus:function(t){ 
	this.zIndexvalue++
	t.style.zIndex=this.zIndexvalue
	t.isClosed=false 
	this.setopacity(this.lastactivet.handle, 0.5)
	this.setopacity(t.handle, 1) 
	this.lastactivet=t 
},

show:function(t){
	if (t.isClosed){
//		alert("DHTML Window has been closed, so nothing to show. Open/Create the window again.")
		return
	}
	if (t.lastx)
		dhtmlwindow.restore(t.controls.firstChild, t) 
	else
		t.style.display="block"
	this.setfocus(t)
	t.state="fullview"
},

hide:function(t){
	t.style.display="none"
},

ajax_connect:function(url, t){
	var page_request = false
	var bustcacheparameter=""
	if (window.XMLHttpRequest) 
		page_request = new XMLHttpRequest()
	else if (window.ActiveXObject){ 
		try {
		page_request = new ActiveXObject("Msxml2.XMLHTTP")
		} 
		catch (e){
			try{
			page_request = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (e){}
		}
	}
	else
		return false
	t.contentarea.innerHTML=this.ajaxloadinghtml
	page_request.onreadystatechange=function(){dhtmlwindow.ajax_loadpage(page_request, t)}
	if (this.ajaxbustcache)
		bustcacheparameter=(url.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
	page_request.open('GET', url+bustcacheparameter, true)
	page_request.send(null)
},

ajax_loadpage:function(page_request, t){
	if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
	t.contentarea.innerHTML=page_request.responseText
	}
},


stop:function(){
	dhtmlwindow.etarget=null 
	document.onmousemove=null
	document.onmouseup=null
},

addEvent:function(target, functionref, tasktype){
	var tasktype=(window.addEventListener)? tasktype : "on"+tasktype
	if (target.addEventListener)
		target.addEventListener(tasktype, functionref, false)
	else if (target.attachEvent)
		target.attachEvent(tasktype, functionref)
},

cleanup:function(){
	for (var i=0; i<dhtmlwindow.tobjects.length; i++){
		dhtmlwindow.tobjects[i].handle._parent=dhtmlwindow.tobjects[i].resizearea._parent=dhtmlwindow.tobjects[i].controls._parent=null
	}
	window.onload=null
}

}

var popUpWin = null;

function Popup(sTitle,sUrl,left,top,width,height)
{
	setupModal();
	
	if (!width) width = 525;
	if (!height) height = 470;

	setTimeout(function(){openDHTMLWindow(sTitle,sUrl,left,top,width,height);},     100);
}

function openDHTMLWindow(sTitle,sUrl,left,top,width,height)
{
	popUpWin = dhtmlwindow.open('popup', 'iframe', sUrl, sTitle, 'width='+width+'px,height='+height+'px,resize=0,scrolling=1,center=1');
	popUpWin.onclose = cleanUpIEFrameBug;

	addEventOnPopUpWinclose(onDhtmlWindowClose)
}

function setupModal()
{
	var winW, winH;
	// prevent text selection in IE 
	document.onselectstart = function () { return false; }; 
	// prevent IE from trying to drag an image 
	document.ondragstart = function() { return false; };	 
	// Pour prévenir la perte de focus au dessus des iFrames
	var fixFrameBug = document.getElementById("modalDialog");
	fixFrameBug.style.display = 'inline';
	// Disable les scrollbars
	document.getElementsByTagName("body")[0].style.overflow = "hidden";
}

function cleanUpIEFrameBug()
{
	var fixFrameBug = document.getElementById("modalDialog");
	if (fixFrameBug)
		fixFrameBug.style.display='none'; 

	document.getElementsByTagName("body")[0].style.overflow = "";

	document.onselectstart = null; 
	document.ondragstart = null; 
}

function CloseBoxOnClick(sReloadPage) {    
        
	CloseBoxOnClick(sReloadPage, true) 
}

function CloseBoxOnClick(sReloadPage, closePopUpWin) {
    
    if (closePopUpWin == undefined || closePopUpWin)
        popUpWin.close();

    if (sReloadPage == false)
        sReloadPage = "false";

    if (sReloadPage == true)
        sReloadPage = "true";

    if (sReloadPage != undefined && sReloadPage.toLowerCase() == "true")
        window.location.href = window.location;
    //document.forms[0].submit();

    if (sReloadPage != undefined && sReloadPage.toLowerCase() == "reloadonlyframe") {
        var listFrame = parent.document.getElementById("iFrameTopic");
        if (listFrame != null)
            listFrame.contentWindow.document.forms[0].submit();
    }
}

function addEventOnPopUpWinclose(func) {

    if (popUpWin == null)
        return;

    var oldonload = popUpWin.onclose;

    if (typeof popUpWin.onclose != "function") {
        popUpWin.onclose = func;
    }
    else {
        popUpWin.onclose = function() {

            if (oldonload) {
                oldonload();
            }
            func();
        };
    }
}

function onDhtmlWindowClose() { }

document.write('<div id="dhtmlwindowholder"><span style="display:none">.</span></div>') 
window.onunload=dhtmlwindow.cleanup
