// Simple popup 0.1 by roba

setTimeout('closeit()', 20000);

function loadwindow(width,height){
	if (ns6) {
		ypos = innerHeight;
		ypos = (ypos/2) - (height/2);
		if (ypos < 1) ypos = 100;
//		xpos = innerWidth;
//		xpos = (xpos/2) - (width/2);
		xpos = 200;
		if (xpos < 1) xpos = 100;
		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);
		if (ypos < 1) ypos = 100;
//		xpos = document.body.offsetWidth;
//		xpos = (xpos/2) - (width/2);
		xpos = 200;
		if (xpos < 1) xpos = 100;
		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"
}
