// onclick="openWindow('file,titel,width,height');"
function openWindow(file,fTitle,b,h) {
	var wProperties,imgWidth,imgHeight,fWindow,x,y;

	if (self.innerWidth) {
		imgWidth = self.innerWidth;
		imgHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth) {
		imgWidth = document.documentElement.clientWidth;
		imgHeight = document.documentElement.clientHeight;
	}
	else if (document.body) {
		imgWidth = document.body.clientWidth;
		imgHeight = document.body.clientHeight;
	}

	x = 250;
	y = 200;
	wProperties="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width=100,height=100,menubar=no,toolbar=no,statusbar=no,resize=no";

	//x = (screen.availWidth) ? (screen.availWidth-b)/2  : 250;
	//y = (screen.availHeight)? (screen.availHeight-h)/2 : 200;
	//wProperties="left="+x+",top="+y+",width=100,height=100,menubar=no,toolbar=no,statusbar=no,resize=no";

	window.open(file,"newWindow",wProperties);
}
