// JavaScript Document
function ventanaMenu(dato,width,height,url,center) {
	if (center) {
		var left=(screen.width-width-5)/2;
		var top=(screen.height-height-5)/2;
	} else {
		var left=10;
		var top=10;
	}

	if (left<0) left=0;
	if (top<0) top=0;	

	var options = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width="+width+",height="+height+",left="+left+",top="+top;
	var mypopup = window.open(dato,"popupwindow5", options);
	mypopup.moveTo(left, top);
}

