function showdetails() {
	showdetails2('');
}
function showdetails2(which) {
	var w = 800;
	var h = 600;
	var x = (screen.width) ? (screen.width-w)/2 : 0;
	var y = (screen.height) ? (screen.height-h)/2 : 0;
	var pagina = 'widget.aspx?w=2#' + which;
	settings = 'height='+h+',width='+w+',top='+y+',left='+x+',scrollbars=yes, resizable=yes, status=no';
	window.open(pagina, 'detalle', settings);
}
