// Simple popup 0.1 by roba
if (document.all)    {n=0;ie=1;ns6=0;}
if (document.getElementById&&!document.all)    {n=0;ie=0;ns6=1;} 

function loadwindow(width,height,url){
	if (ns6) {
		ypos = innerHeight;
		ypos = ((ypos/2) - (height/2)) + pageYOffset;
		if (ypos < 1) ypos = 100;
		xpos = innerWidth;
		xpos = (xpos/2) - (width/2);
		if (xpos < 1) xpos = 100;
		document.getElementById("cframe").src=url;
		document.getElementById("dwindow").style.display='';
		document.getElementById("dwindow").style.width=width+"px";
		document.getElementById("dwindow").style.height=height+"px";
		document.getElementById("dwindow").style.left=xpos+"px";
		document.getElementById("dwindow").style.top=ypos+"px";
		}
	else if (ie) {
		ypos = document.body.offsetHeight;
		ypos = ((ypos/2) - (height/2) + document.body.scrollTop);
		if (ypos < 1) ypos = 100;
		if (window.opera) pix = 0;
		else pix = 21;
		xpos = document.body.offsetWidth - pix;
		xpos = (xpos/2) - (width/2);
		if (xpos < 1) xpos = 100;
		document.all("cframe").src=url;
		document.all("dwindow").style.display='';
		document.all("dwindow").style.width=width+"px";
		document.all("dwindow").style.height=height+"px";
		document.all("dwindow").style.left=xpos+"px";
		document.all("dwindow").style.top=ypos+"px";
		}	
	}

function closeit(){
document.getElementById("dwindow").style.display="none"
}