var ShowBorder="Y";var maindhtmlwindow = "dhtmlwindow";var dragcontentareaS="drag-contentarea";var draghandleS="drag-handle";var dragstatusareaS="drag-statusarea";var dragresizeareaS="drag-resizearea";
var isBorderLess = 'false';
var dhtmlwindow={
imagefiles:[appPath+ 'windowfiles/min.gif', appPath+ 'windowfiles/close.gif',appPath+ 'windowfiles/restore.gif', appPath + 'windowfiles/resize.gif'],
ajaxbustcache: true, minimizeorder: 0, tobjects: [], 
init:function(t){  
	var dw=document.createElement("div") ;
	dw.id=t;
	if(isBorderLess == 'true')
	dw.className="dhtmlwindow";
	else
	dw.className="dhtmlwindow";
	var dwd='';
	if(ShowBorder=="Y")
	    dwd='<div id="winTitle" class=' + draghandleS + '>';	 
	if(ShowBorder=="N")
	{
	     dwd+='<div class="drag-controls-s"></div>';	     
	}
	else
	dwd+='DHTML Window <div class="drag-controls" title="Close">[x]&nbsp;</div>';
	dwd+='</div>';
	dwd+='<div class=' + dragcontentareaS + '></div>';
	dwd+='<div style="display: none;" class=' + dragstatusareaS + '><div class=' + dragresizeareaS + ' style="background: transparent url('+this.imagefiles[3]+') no-repeat scroll right top;-moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">&nbsp;</div></div>';	
	dwd+='</div>';
	dw.innerHTML=dwd;
	document.getElementById("dhtmlwindowholder").appendChild(dw);
	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))
		{	
		    if(isBorderLess == 'true')
		        t[divs[i].className.replace(/drag-/, "").replace(/-s/, "")]=divs[i];
		    else
		        t[divs[i].className.replace(/drag-/, "")]=divs[i];
		}
	}
	t.style.zIndex=this.zIndexvalue; 
	if(ShowBorder=="Y")
	   t.handle._parent=t;
	t.resizearea._parent=t; 
	t.controls._parent=t;
	t.onclose=function(){return true};
	t.onmousedown=function(){dhtmlwindow.zIndexvalue++; this.style.zIndex=dhtmlwindow.zIndexvalue};
	if(ShowBorder=="Y")
	    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.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){
 
 
  
    if(isBorderLess == 'true'){ShowBorder="N";maindhtmlwindow = "dhtmlwindow-s"; dragcontentareaS="drag-contentarea-s"; draghandleS="drag-handle-s"; dragstatusareaS="drag-statusarea-s"; dragresizeareaS="drag-resizearea-s";}
    
	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.setSize(getValue(("width")), (getValue("height"))) ;
	var xpos=getValue("center")? "middle" : getValue("left") ;
	var ypos=getValue("center")? "middle" : getValue("top");
	t.moveTo(xpos, ypos) ;
	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.style.visibility="visible";
	t.style.display="block";
	t.contentarea.style.display="block";
	t.moveTo(xpos, ypos) ;
	t.load(contenttype, contentsource, title);
	if (t.state=="minimized" && t.controls.firstChild.title=="Restore"){ 
		t.controls.firstChild.setAttribute("src", dhtmlwindow.imagefiles[0]) ;
		t.controls.firstChild.setAttribute("title", "Minimize");
		t.state="fullview" ;
	}
	
	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(); 
	t.style.left=(x=="middle")? this.scroll_left+(this.docwidth-t.offsetWidth)/2+"px" : this.scroll_left+parseInt(x)+"px";
	t.style.top=(y=="middle")? this.scroll_top+(this.docheight-t.offsetHeight)/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){  
	var contenttype=contenttype.toLowerCase(); 
	if (typeof title!="undefined")
	{
	  if(ShowBorder=="Y")
		t.handle.firstChild.nodeValue=title;
	}
	if (contenttype=="inline")
	{
		t.contentarea.innerHTML=contentsource;
		/*t.contentarea.innerHTML='<iframe frameborder="0" src="" style="margin:0; padding:0;border:0; background-color:none;width:100%; height: 100%" name="_iframe-'+t.id+'"></iframe>';
		window.frames["_iframe-"+t.id].document.write(contentsource);*/
	}
	else if (contenttype=="div"){
		t.contentarea.innerHTML=document.getElementById(contentsource).innerHTML ;
		document.getElementById(contentsource).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 frameborder="0" src="" style="margin:0; padding:0;border:0; background-color:none;width:100%; height: 100%" class="dhtmlframe" name="_iframe-'+t.id+'"></iframe>';
		window.frames["_iframe-"+t.id].location.replace(contentsource); 		 
	   if(ShowBorder=="N")		
	   { 
			//ShowBorder="Y";
			document.getElementById(t.id).style.border="0px;";
			t.contentarea.style.border="0px";
			t.contentarea.style.padding="0px";			
	   }
	   //else
	   //   t.contentarea.innerHTML='<iframe src="" style="margin:0; padding:0; width:100%; height: 100%" name="_iframe-'+t.id+'"></iframe>';
	   //   window.frames["_iframe-"+t.id].location.replace(contentsource) 
	    }  
	    else
	       window.frames["_iframe-"+t.id].location.replace(contentsource) ;		
		}
	else if (contenttype=="ajax"){
		this.ajax_connect(contentsource, t) ;
	}
	t.contentarea.datatype=contenttype ;	 
},

setupdrag:function(e){ 
	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==draghandleS)  
		d.move(etarget._parent, e);
	else if (etarget.className==dragresizeareaS)  
		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=dhtmlwindow.distancex+dhtmlwindow.initx+"px";
	t.style.top=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 (/Minimize/i.test(sourceobj.getAttribute("title"))) 
		d.minimize(sourceobj, this._parent);
	else if (/Restore/i.test(sourceobj.getAttribute("title")))  
		d.restore(sourceobj, this._parent);
	else if (/Close/i.test(sourceobj.getAttribute("title")))  
		d.close(this._parent);
	return false;
},
minimize:function(button, t){
 
},
restore:function(button, t){
},
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 (t.state!="minimized")  
			dhtmlwindow.rememberattrs(t);
		t.style.display="none";
	}
	return closewinbol;
},
show:function(t){
	if (t.lastx)  
		dhtmlwindow.restore(t.controls.firstChild, t);  
	else
		t.style.display="block";
	t.state="fullview"; 
},
ajax_connect:function(url, t){ 
},
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(){
var i=0;   
	for (i=0; i<dhtmlwindow.tobjects.length; i++){
	   if(dhtmlwindow.tobjects[i].handle!=null)
	    	dhtmlwindow.tobjects[i].handle._parent=dhtmlwindow.tobjects[i].resizearea._parent=dhtmlwindow.tobjects[i].controls._parent=null;
	}
	window.onload=null;
 }
}  
document.write('<div id="dhtmlwindowholder"><span style="display:none">.</span></div>');
window.onunload=dhtmlwindow.cleanup;