function Popup(module,width,height) {
	if (typeof width == "undefined") {
		width = 300;
	}
	if (typeof height == "undefined") {
		height = 170;
	}
	window.open('/popups/?m='+module,module,'width='+width+',height='+height);
}
