function popup(url,windowname,width,height,scrollbars,features) {
	width=(width)?width:screen.width/2;
	height=(height)?height:screen.height/2;
	scrollbars=(scrollbars)?scrollbars:'no';
	var screenX = (screen.width/2 - width/2);
	var screenY = (screen.height/2 - height/2);
	var features= "width=" + width + ",height=" + height +",scrollbars=" + scrollbars + ",status=no";
	features += ",screenX=" + screenX + ",left=" + screenX;
	features += ",screenY=" + screenY + ",top=" + screenY;
	
	var mywin=window.open(url, windowname, features);
	if (mywin)
	mywin.focus();
	return mywin;
}

function confirmaEliminar(missatge,adreca){
var m = window.confirm(missatge)
	if (m==true){
	window.location = adreca
	}
}

function confirmaEliminar_submit(missatge,form){
var m = window.confirm(missatge)
	if (m==true){
	document.getElementById(form).submit();
	}
}